diff options
| author | Glenn Morris | 2015-06-10 21:13:51 -0400 |
|---|---|---|
| committer | Glenn Morris | 2015-06-10 21:13:51 -0400 |
| commit | 62afb85efbaaa1e8f4c2015486e7453614027141 (patch) | |
| tree | e3c9a6cb07830910a39408fc8df422ba5eb037fa /admin | |
| parent | cabaa992fa7f7f1bcde79be8c202d54a41a52c9f (diff) | |
| download | emacs-62afb85efbaaa1e8f4c2015486e7453614027141.tar.gz emacs-62afb85efbaaa1e8f4c2015486e7453614027141.zip | |
Improve generated ChangeLog for gitmerge.el commits. (Bug#20717)
* build-aux/gitlog-to-changelog: Handle gitmerge.el skipped commits.
* admin/gitmerge.el (gitmerge-commit-message):
Exclude "skipped" messages from ChangeLog once again.
; * ChangLog.2: Related fixes.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/gitmerge.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/admin/gitmerge.el b/admin/gitmerge.el index 70dff295cd1..c8cf2dcc565 100644 --- a/admin/gitmerge.el +++ b/admin/gitmerge.el | |||
| @@ -314,7 +314,10 @@ Returns non-nil if conflicts remain." | |||
| 314 | SKIP denotes whether those commits are actually skipped. If END | 314 | SKIP denotes whether those commits are actually skipped. If END |
| 315 | is nil, only the single commit BEG is merged." | 315 | is nil, only the single commit BEG is merged." |
| 316 | (with-temp-buffer | 316 | (with-temp-buffer |
| 317 | (insert ; (if skip "; " "") ; I have no idea what to do for this | 317 | ;; We do not insert "; " for non-skipped messages, |
| 318 | ;; because the date of those entries is helpful in figuring out | ||
| 319 | ;; when things got merged, since git does not track that. | ||
| 320 | (insert (if skip "; " "") | ||
| 318 | "Merge from " branch "\n\n" | 321 | "Merge from " branch "\n\n" |
| 319 | (if skip | 322 | (if skip |
| 320 | (concat "The following commit" | 323 | (concat "The following commit" |