X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b6964cb031b5aa25c34b06ba77540ab06fab2005..cd950da:/admin/gitmerge.el diff --git a/admin/gitmerge.el b/admin/gitmerge.el index 43773f5cb3..a08a36937b 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el @@ -1,6 +1,6 @@ ;;; gitmerge.el --- help merge one Emacs branch into another -;; Copyright (C) 2010-2015 Free Software Foundation, Inc. +;; Copyright (C) 2010-2016 Free Software Foundation, Inc. ;; Authors: David Engster ;; Stefan Monnier @@ -314,7 +314,11 @@ Returns non-nil if conflicts remain." SKIP denotes whether those commits are actually skipped. If END is nil, only the single commit BEG is merged." (with-temp-buffer - (insert "Merge from " branch "\n\n" + ;; We do not insert "; " for non-skipped messages, + ;; because the date of those entries is helpful in figuring out + ;; when things got merged, since git does not track that. + (insert (if skip "; " "") + "Merge from " branch "\n\n" (if skip (concat "The following commit" (if end "s were " " was ")