]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for diff-no-select
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 10 Sep 2020 21:03:50 +0000 (23:03 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 10 Sep 2020 21:03:50 +0000 (23:03 +0200)
* lisp/vc/diff.el (diff-no-select): Document the BUF argument
(bug#43307).

lisp/vc/diff.el

index 9e7e771963c8d298da5e527b5504f9250fd2b74c..2ed8573c07d3c89f35bfce4478ec9a994298a733 100644 (file)
@@ -145,9 +145,13 @@ Possible values are:
 
 (defun diff-no-select (old new &optional switches no-async buf)
   ;; Noninteractive helper for creating and reverting diff buffers
-  "Compare the OLD and NEW file/buffer, and return a diff buffer.
+  "Compare the OLD and NEW file/buffer.
 
-See `diff' for the meaning of the arguments."
+If BUF is nil, the \"*Diff*\" buffer will be used as the diff
+buffer.  If non-nil, BUF will be used as the diff buffer.  The
+buffer used will be returned by this value.
+
+See `diff' for the meaning of the SWITCHES and NO-ASYNC arguments."
   (unless (bufferp new) (setq new (expand-file-name new)))
   (unless (bufferp old) (setq old (expand-file-name old)))
   (or switches (setq switches diff-switches)) ; If not specified, use default.