diff options
Diffstat (limited to 'lisp/diff-mode.el')
| -rw-r--r-- | lisp/diff-mode.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 9b00eae050d..26ff5441baf 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el | |||
| @@ -1248,9 +1248,12 @@ If the prefix arg is bigger than 8 (for example with \\[universal-argument] \\[u | |||
| 1248 | (defun diff-current-defun () | 1248 | (defun diff-current-defun () |
| 1249 | "Find the name of function at point. | 1249 | "Find the name of function at point. |
| 1250 | For use in `add-log-current-defun-function'." | 1250 | For use in `add-log-current-defun-function'." |
| 1251 | (destructuring-bind (buf line-offset pos src dst &optional switched) | 1251 | (save-excursion |
| 1252 | (diff-find-source-location) | 1252 | (when (looking-at diff-hunk-header-re) |
| 1253 | (save-excursion | 1253 | (forward-line 1) |
| 1254 | (while (and (looking-at " ") (not (zerop (forward-line 1)))))) | ||
| 1255 | (destructuring-bind (buf line-offset pos src dst &optional switched) | ||
| 1256 | (diff-find-source-location) | ||
| 1254 | (beginning-of-line) | 1257 | (beginning-of-line) |
| 1255 | (or (when (memq (char-after) '(?< ?-)) | 1258 | (or (when (memq (char-after) '(?< ?-)) |
| 1256 | ;; Cursor is pointing at removed text. This could be a removed | 1259 | ;; Cursor is pointing at removed text. This could be a removed |