summaryrefslogtreecommitdiff
path: root/lisp/vc/diff.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-09-18 09:13:37 +0200
committerStefan Kangas <stefan@marxist.se>2021-09-18 09:35:29 +0200
commitb2164df86ba80cf4b7f3499596fbcf803395b6e7 (patch)
tree858b26c1b31d2abc09e07f78edcd16c388488869 /lisp/vc/diff.el
parent3e13433ea97b988919a0599c19099b303ee4a4b6 (diff)
downloademacs-b2164df86ba80cf4b7f3499596fbcf803395b6e7.tar.gz
; More stylistic docfixes in vc/*.el found by checkdoc
Diffstat (limited to 'lisp/vc/diff.el')
-rw-r--r--lisp/vc/diff.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/vc/diff.el b/lisp/vc/diff.el
index 7bb1151602c..352fa693ffb 100644
--- a/lisp/vc/diff.el
+++ b/lisp/vc/diff.el
@@ -87,10 +87,10 @@ minibuffer. The default for NEW is the current buffer's file
name, and the default for OLD is a backup file for NEW, if one
exists. If NO-ASYNC is non-nil, call diff synchronously.
-When called interactively with a prefix argument, prompt
+When called interactively with a prefix argument SWITCHES, prompt
interactively for diff switches. Otherwise, the switches
-specified in the variable `diff-switches' are passed to the
-diff command.
+specified in the variable `diff-switches' are passed to the diff
+command.
Non-interactively, OLD and NEW may each be a file or a buffer."
(interactive
@@ -229,7 +229,7 @@ returns the buffer used."
Uses the latest backup, if there are several numerical backups.
If this file is a backup, diff it with its original.
The backup file is the first file given to `diff'.
-With prefix arg, prompt for diff switches."
+With prefix arg SWITCHES, prompt for diff switches."
(interactive (list (read-file-name "Diff (file with backup): ")
(diff-switches)))
(let (bak ori)
@@ -243,7 +243,7 @@ With prefix arg, prompt for diff switches."
;;;###autoload
(defun diff-latest-backup-file (fn)
- "Return the latest existing backup of FILE, or nil."
+ "Return the latest existing backup of file FN, or nil."
(let ((handler (find-file-name-handler fn 'diff-latest-backup-file)))
(if handler
(funcall handler 'diff-latest-backup-file fn)