summaryrefslogtreecommitdiff
path: root/lisp/diff-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2010-12-07 14:48:15 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2010-12-07 14:48:15 -0500
commitb1816a74de23a28f4ab3f39d7bcedb81cc13fd13 (patch)
treed80fd8002aba0feb71ce40065d13660caf3cfe0c /lisp/diff-mode.el
parent5dcb4c4e5d757099766f7147eace43f0b00c7fe4 (diff)
downloademacs-b1816a74de23a28f4ab3f39d7bcedb81cc13fd13.tar.gz
* diff-mode.el (diff-refine-hunk): Make it work when the hunk contains
empty lines without a leading space.
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r--lisp/diff-mode.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index 907bf7d5b83..017d1b21b5a 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -1827,10 +1827,13 @@ For use in `add-log-current-defun-function'."
(eval-and-compile (require 'smerge-mode))
(save-excursion
(diff-beginning-of-hunk 'try-harder)
- (let* ((style (diff-hunk-style)) ;Skips the hunk header as well.
+ (let* ((start (point))
+ (style (diff-hunk-style)) ;Skips the hunk header as well.
(beg (point))
(props '((diff-mode . fine) (face diff-refine-change)))
- (end (progn (diff-end-of-hunk) (point))))
+ ;; Be careful to go back to `start' so diff-end-of-hunk gets
+ ;; to read the hunk header's line info.
+ (end (progn (goto-char start) (diff-end-of-hunk) (point))))
(remove-overlays beg end 'diff-mode 'fine)