diff options
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/ediff-util.el | 6 | ||||
-rw-r--r-- | lisp/vc/vc-bzr.el | 2 | ||||
-rw-r--r-- | lisp/vc/vc-git.el | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lisp/vc/ediff-util.el b/lisp/vc/ediff-util.el index 52a765482e0..a481defe29f 100644 --- a/lisp/vc/ediff-util.el +++ b/lisp/vc/ediff-util.el @@ -1274,21 +1274,21 @@ which see." (cond ((eq ediff-window-setup-function #'ediff-setup-windows-multiframe) (setq ediff-multiframe nil) (setq window-setup-func #'ediff-setup-windows-plain) - (message "ediff is now in 'plain' mode")) + (message "ediff is now in `plain' mode")) ((eq ediff-window-setup-function #'ediff-setup-windows-plain) (if (and (ediff-buffer-live-p ediff-control-buffer) (window-live-p ediff-control-window)) (set-window-dedicated-p ediff-control-window nil)) (setq ediff-multiframe t) (setq window-setup-func #'ediff-setup-windows-multiframe) - (message "ediff is now in 'multiframe' mode")) + (message "ediff is now in `multiframe' mode")) (t (if (and (ediff-buffer-live-p ediff-control-buffer) (window-live-p ediff-control-window)) (set-window-dedicated-p ediff-control-window nil)) (setq ediff-multiframe t) (setq window-setup-func #'ediff-setup-windows-multiframe)) - (message "ediff is now in 'multiframe' mode")) + (message "ediff is now in `multiframe' mode")) ;; change default (setq-default ediff-window-setup-function window-setup-func) diff --git a/lisp/vc/vc-bzr.el b/lisp/vc/vc-bzr.el index 89f1fcce376..4c75eb79f1a 100644 --- a/lisp/vc/vc-bzr.el +++ b/lisp/vc/vc-bzr.el @@ -433,7 +433,7 @@ default if it is available." Return value is a cons (STATUS . WARNING), where WARNING is a string or nil, and STATUS is one of the symbols: `added', `ignored', `kindchanged', `modified', `removed', `renamed', `unknown', -which directly correspond to `bzr status' output, or 'unchanged +which directly correspond to `bzr status' output, or `unchanged' for files whose copy in the working tree is identical to the one in the branch repository (or whose status not be determined)." ;; Doc used to also say the following, but AFAICS, it has never been true. diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 3960f725cf9..2046a9dceca 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -282,8 +282,8 @@ toggle display of the entire list." "Convert CODE-LIST to a VC status. Each element of CODE-LIST comes from the first two characters of -a line returned by 'git status --porcelain' and should be passed -in the order given by 'git status'." +a line returned by `git status --porcelain' and should be passed +in the order given by `git status'." ;; It is necessary to allow CODE-LIST to be a list because sometimes git ;; status returns multiple lines, e.g. for a file that is removed from ;; the index but is present in the HEAD and working tree. |