]> code.delx.au - gnu-emacs/commitdiff
* build-aux/gitlog-to-emacslog: Also ignore pointless merge commits.
authorGlenn Morris <rgm@gnu.org>
Thu, 11 Jun 2015 01:37:06 +0000 (21:37 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 11 Jun 2015 01:37:06 +0000 (21:37 -0400)
; * ChangeLog.2: Related fixes.

ChangeLog.2
build-aux/gitlog-to-emacslog

index ff9cbdf7dc9e97d8ccdd7112c0496b0a2f8547bc..b3a5a85885e15d5a9d3e2385ce7e5acf4a3b59f3 100644 (file)
        * doc/emacs/mule.texi (Modifying Fontsets): Document
        face-ignored-fonts.  (Bug#20628)
 
-       Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
-
        Add etags test for the new -Q option
        * test/etags/ETAGS.good_1, test/etags/ETAGS.good_2:
        * test/etags/ETAGS.good_3, test/etags/ETAGS.good_4:
 
 2015-05-27  Michael Albinus  <michael.albinus@gmx.de>
 
-       Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-       Conflicts:
-               lisp/net/tramp.el
-
        Fix typo in commit 3953c4be2816537be95520605d45b866dc731f4b
 
-2015-05-27  Eli Zaretskii  <eliz@gnu.org>
-
-       Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
-
 2015-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * lisp/isearch.el (isearch--current-buffer): New var
        (vc-git-resolve-when-done): Update to honor the new variable.
        (Bug#20292)
 
-2015-05-16  Eli Zaretskii  <eliz@gnu.org>
-
-       Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs
-
 2015-05-16  Artur Malabarba  <bruce.connor.am@gmail.com>
 
        * lisp/emacs-lisp/tabulated-list.el: Don't error on nil header-string
 
 2015-05-02  K. Handa  <handa@gnu.org>
 
-       Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-
        * cmds.c (internal_self_insert): When we insert spaces for
        padding, set point before the padding spaces, not after them.
 
        (rcirc-next-active-buffer): when there is no new activity, use
        `rcirc-bury-buffers' to hide all RCIRC buffers
 
-2015-04-29  Michael Albinus  <michael.albinus@gmx.de>
-
-       Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-
 2015-04-29  Krzysztof Jurewicz  <krzysztof.jurewicz@gmail.com>  (tiny change)
 
        Fix DBUS query result parsing for secrets-search-items
        `intangible' since that property is not used any more.
        (gnus-article-treat-body-boundary): Use gnus-hidden-properties.
 
-2015-04-09  Jay Belanger  <jay.p.belanger@gmail.com>
-
-       Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-
 2015-04-09  Dmitry Gutov  <dgutov@yandex.ru>
 
        Use the VC root in `log-edit-listfun'
 
 2015-04-08  Michael Albinus  <michael.albinus@gmx.de>
 
-       Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
-
        Fix nasty scoping bug in tramp-cache.el
        * lisp/net/tramp-cache.el (tramp-flush-file-property): Fix nasty scoping bug.
 
index 07b33e9aa4d460e7457634a6f4abb691633aa7e2..4fec4de2d8b2702a9d2b7088c706688c78531c21 100755 (executable)
@@ -74,7 +74,10 @@ test -d .git || {
 }
 
 # Use Gnulib's packaged ChangeLog generator.
-./build-aux/gitlog-to-changelog --ignore-matching='^; ' \
+# Maybe we should skip all "Merge branch 'master'" messages.
+# See eg the cairo-related ones.
+./build-aux/gitlog-to-changelog \
+    --ignore-matching="^; |^Merge branch 'master' of git\.(savannah|sv)\.gnu\.org:/srv/git/emacs$" \
   --ignore-line='^; ' --format='%B' \
   "$gen_origin..$new_origin" >"ChangeLog.tmp" || exit