summaryrefslogtreecommitdiff
path: root/admin/gitmerge.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-10-24 13:20:01 -0400
committerGlenn Morris <rgm@gnu.org>2018-10-24 13:20:01 -0400
commit129ffc2761bc977dc859e7065668cdd997fb4ef7 (patch)
tree302fa7df4a0dd79ede5f7245f7e60e6bde071596 /admin/gitmerge.el
parent00027ff9d0f646662458bdb47cc7e2214f439698 (diff)
downloademacs-129ffc2761bc977dc859e7065668cdd997fb4ef7.tar.gz
* admin/gitmerge.el (gitmerge-resolve): Check NEWS patch exit status.
Diffstat (limited to 'admin/gitmerge.el')
-rw-r--r--admin/gitmerge.el27
1 files changed, 18 insertions, 9 deletions
diff --git a/admin/gitmerge.el b/admin/gitmerge.el
index a123e0352d7..6dedee8dd14 100644
--- a/admin/gitmerge.el
+++ b/admin/gitmerge.el
@@ -275,6 +275,9 @@ should not be skipped."
(setq found (cdr skip))))
found))
+(defvar change-log-start-entry-re) ; in add-log, which defines change-log-mode
+(declare-function add-log-iso8601-time-string "add-log" ())
+
(defun gitmerge-resolve (file)
"Try to resolve conflicts in FILE with smerge.
Returns non-nil if conflicts remain."
@@ -323,6 +326,9 @@ Returns non-nil if conflicts remain."
;; Try to resolve the conflicts.
(let (temp)
(cond
+ ;; FIXME when merging release branch to master, we still
+ ;; need to detect and handle the case where NEWS was modified
+ ;; without a conflict. We should abort if NEWS gets changed.
((and (equal file "etc/NEWS")
(ignore-errors
(setq temp
@@ -332,18 +338,21 @@ Returns non-nil if conflicts remain."
(or noninteractive
(y-or-n-p "Try to fix NEWS conflict? ")))
(let ((relfile (file-name-nondirectory file))
- (tempfile (make-temp-file "gitmerge")))
- (unwind-protect
+ (patchfile (concat temp "-gitmerge.patch")))
+ (call-process "git" nil `(:file ,patchfile) nil "diff"
+ (format ":1:%s" file)
+ (format ":3:%s" file))
+ (if (eq 0 (call-process "patch" patchfile nil nil temp))
(progn
- (call-process "git" nil `(:file ,tempfile) nil "diff"
- (format ":1:%s" file)
- (format ":3:%s" file))
+ ;; We intentionally use a non-temporary name for this
+ ;; file, and only delete it if applied successfully.
+ (delete-file patchfile)
+ (call-process "git" nil t nil "add" "--" temp)
(call-process "git" nil t nil "reset" "--" relfile)
(call-process "git" nil t nil "checkout" "--" relfile)
- (revert-buffer nil 'noconfirm)
- (call-process "patch" tempfile nil nil temp)
- (call-process "git" nil t nil "add" "--" temp))
- (delete-file tempfile))))
+ (revert-buffer nil 'noconfirm))
+ ;; The conflict markers remain so we return non-nil.
+ (message "Failed to fix NEWS conflict"))))
;; Generated files.
((member file '("lisp/ldefs-boot.el"))
;; We are in the file's buffer, so names are relative.