diff options
author | Ivan Shmakov <ivan@siamics.net> | 2019-06-25 23:22:19 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-25 23:23:01 +0200 |
commit | 394282142563fe1341eba1845672e2412bf8c7d9 (patch) | |
tree | f52ca49d7cd4d28f0e60811bb2b11beb01b581e2 /lisp/vc/diff.el | |
parent | 4217398de3883cc8bc550f6ba33389e8ec85ad6e (diff) | |
download | emacs-394282142563fe1341eba1845672e2412bf8c7d9.tar.gz emacs-394282142563fe1341eba1845672e2412bf8c7d9.tar.bz2 emacs-394282142563fe1341eba1845672e2412bf8c7d9.zip |
Check labels in smerge-mode
* lisp/vc/diff.el (diff-check-labels): Separated out into its own
function (bug#18850)...
(diff-no-select): ... from here.
* lisp/vc/smerge-mode.el (smerge-diff): Use diff-check-labels.
Diffstat (limited to 'lisp/vc/diff.el')
-rw-r--r-- | lisp/vc/diff.el | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lisp/vc/diff.el b/lisp/vc/diff.el index 523be87bc49..5fa771f5f1e 100644 --- a/lisp/vc/diff.el +++ b/lisp/vc/diff.el @@ -123,6 +123,15 @@ Possible values are: (defvar diff-default-directory) +(defun diff-check-labels (&optional force) + (if (not (or force (eq 'check diff-use-labels))) + diff-use-labels + (setq diff-use-labels + (with-temp-buffer + (when (ignore-errors + (call-process diff-command nil t nil "--help")) + (if (search-backward "--label" nil t) t)))))) + (defun diff-no-select (old new &optional switches no-async buf) ;; Noninteractive helper for creating and reverting diff buffers (unless (bufferp new) (setq new (expand-file-name new))) @@ -130,11 +139,7 @@ Possible values are: (or switches (setq switches diff-switches)) ; If not specified, use default. (unless (listp switches) (setq switches (list switches))) (or buf (setq buf (get-buffer-create "*Diff*"))) - (when (eq 'check diff-use-labels) - (setq diff-use-labels - (with-temp-buffer - (when (ignore-errors (call-process diff-command nil t nil "--help")) - (if (search-backward "--label" nil t) t))))) + (diff-check-labels) (let* ((old-alt (diff-file-local-copy old)) (new-alt (diff-file-local-copy new)) (command |