X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/996ad1b846a0865245df008bdb551093278b3c30..33ec2ff0f8b77f3c10af395d3e8979508cd78c0a:/admin/gitmerge.el diff --git a/admin/gitmerge.el b/admin/gitmerge.el index 206f12c08a..c8cf2dcc56 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-2014 Free Software Foundation, Inc. +;; Copyright (C) 2010-2015 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 ")