summaryrefslogtreecommitdiff
path: root/lisp/vc/diff-mode.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2014-08-16 21:51:27 +0200
committerAndreas Schwab <schwab@linux-m68k.org>2014-08-16 21:51:27 +0200
commit52e7a5b99f790dcc21cf84ba0ae6537ccee11efc (patch)
tree1f26ec5de9d059855db4f174e5cc987a17c3eaae /lisp/vc/diff-mode.el
parent3bcff29cea902c92c2ddb20f992d2744fb404d12 (diff)
downloademacs-52e7a5b99f790dcc21cf84ba0ae6537ccee11efc.tar.gz
Handle missing space marker in unified diff during header fixup
* vc/diff-mode.el (diff-fixup-modifs): Handle empty line in context of unified diff.
Diffstat (limited to 'lisp/vc/diff-mode.el')
-rw-r--r--lisp/vc/diff-mode.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el
index 4908c5f4961..d4e973956c8 100644
--- a/lisp/vc/diff-mode.el
+++ b/lisp/vc/diff-mode.el
@@ -1220,6 +1220,9 @@ else cover the whole buffer."
(?- (cl-incf minus))
(?! (cl-incf bang))
((or ?\\ ?#) nil)
+ (?\n (if diff-valid-unified-empty-line
+ (cl-incf space)
+ (setq space 0 plus 0 minus 0 bang 0)))
(_ (setq space 0 plus 0 minus 0 bang 0)))
(cond
((looking-at diff-hunk-header-re-unified)