Kaydet (Commit) d01434b0 authored tarafından Nick Treleaven's avatar Nick Treleaven

Don't list ChangeLog filename in ChangeLog.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5285 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 572826e5
......@@ -63,8 +63,7 @@
* scintilla/LexForth.cxx, scintilla/makefile.win32,
scintilla/KeyWords.cxx, scintilla/Makefile.am, src/highlighting.c,
src/about.c, src/filetypes.c, src/filetypes.h, THANKS,
data/filetypes.forth, data/filetype_extensions.conf, ChangeLog,
wscript:
data/filetypes.forth, data/filetype_extensions.conf, wscript:
Add Forth filetype (patch by Thomas Huth, thanks).
* src/tools.c:
Remove unnecessary 'fix' from r5224 as it breaks configuring custom
......@@ -1762,7 +1761,7 @@
* src/highlighting.c, src/highlighting.h, src/sciwrappers.c,
src/plugindata.h, doc/Doxyfile.in, doc/pluginsymbols.c,
plugins/geanyfunctions.h, plugins/Makefile.am,
plugins/pluginmacros.h, plugins/genapi.py, ChangeLog, wscript:
plugins/pluginmacros.h, plugins/genapi.py, wscript:
Use full function name for GeanyFunctions function pointers. This
avoids naming conflicts e.g. with C++'s 'new' keyword.
Remove deprecated header pluginmacros.h - use geanyfunctions.h
......
......@@ -25,6 +25,8 @@ status=`svn st $*`
files=`echo "$status" |egrep '^[A-Z]'`
# get filenames on one line
files=`echo "$files" |egrep -o '[^A-Z].[ ]+(.+)' |xargs`
# remove ChangeLog
files=`echo "$files" |sed "s/ ChangeLog\b//"`
# add commas if -s argument is not given
if [ -z "$SPACES" ]; then
files=`echo "$files" |sed "s/ /, /g"`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment