diff options
author | Tom Levy <tomlevy93@gmail.com> | 2021-11-09 12:51:48 +0000 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-10 01:17:42 +0100 |
commit | beaa7e14f39734eae845aa23b32b854338308ba1 (patch) | |
tree | 8584e78eeb6519073769149dcda68cb9b6a0a3a6 /lisp/vc | |
parent | 747a1ae4ac3b293f838a19c1b5fc1099446d9666 (diff) | |
download | emacs-beaa7e14f39734eae845aa23b32b854338308ba1.tar.gz emacs-beaa7e14f39734eae845aa23b32b854338308ba1.tar.bz2 emacs-beaa7e14f39734eae845aa23b32b854338308ba1.zip |
; Fix typos in CONTRIBUTE, ELisp manual, ediff
* CONTRIBUTE: Remove stray '. after git command.
* doc/lispref/functions.texi (Function Cells): Fix typo.
* lisp/vc/ediff.el (ediff-regions-wordwise): Fix typo in prompts
("Region's A buffer" => "Region A's buffer") (bug#51718).
Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/vc')
-rw-r--r-- | lisp/vc/ediff.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/ediff.el b/lisp/vc/ediff.el index 49fc60431f6..97c84ae5a18 100644 --- a/lisp/vc/ediff.el +++ b/lisp/vc/ediff.el @@ -983,9 +983,9 @@ STARTUP-HOOKS is a list of functions that Emacs calls without arguments after setting up the Ediff buffers." (interactive (let (bf) - (list (setq bf (read-buffer "Region's A buffer: " + (list (setq bf (read-buffer "Region A's buffer: " (ediff-other-buffer "") t)) - (read-buffer "Region's B buffer: " + (read-buffer "Region B's buffer: " (progn ;; realign buffers so that two visible bufs will be ;; at the top |