diff options
author | Glenn Morris <rgm@gnu.org> | 2015-05-18 21:41:03 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-05-18 21:41:03 -0400 |
commit | 314244aac44525a32dc9ea0a3ec94f77f055d332 (patch) | |
tree | 1322996d0f0469ece1fc81d09e714eb641a82a56 /build-aux/gitlog-to-emacslog | |
parent | 88e4dfaadb1daf6f1ce0e80442af5a2dae7853bc (diff) | |
download | emacs-314244aac44525a32dc9ea0a3ec94f77f055d332.tar.gz |
Add option to ignore commit lines matching a pattern in ChangeLog.
* build-aux/gitlog-to-changelog: Add --ignore-line option.
* build-aux/gitlog-to-emacslog: Ignore lines matching '^; '.
; * CONTRIBUTE: Mention this.
Diffstat (limited to 'build-aux/gitlog-to-emacslog')
-rwxr-xr-x | build-aux/gitlog-to-emacslog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/gitlog-to-emacslog b/build-aux/gitlog-to-emacslog index aa4206005c3..d1b1af9b538 100755 --- a/build-aux/gitlog-to-emacslog +++ b/build-aux/gitlog-to-emacslog @@ -58,7 +58,7 @@ test -d .git || { # Use Gnulib's packaged ChangeLog generator. ./build-aux/gitlog-to-changelog --ignore-matching='^; ' \ - --format='%B' \ + --ignore-line='^; ' --format='%B' \ "$gen_origin.." >"ChangeLog.tmp" || exit if test -s "ChangeLog.tmp"; then |