]> git.eshelyaron.com Git - emacs.git/commitdiff
; Clarify wording of some doc strings in shortdoc.el
authorEli Zaretskii <eliz@gnu.org>
Sun, 25 Sep 2022 19:49:32 +0000 (22:49 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 25 Sep 2022 19:49:32 +0000 (22:49 +0300)
* lisp/emacs-lisp/shortdoc.el (shortdoc-next, shortdoc-previous)
(shortdoc-next-section, shortdoc-previous-section): Clarify
wording.

lisp/emacs-lisp/shortdoc.el

index 6d61ed4ac162cac4e5d179669fad2acf37c8071c..4cfd658e10d12138fb2834bd3b25ffb2931af888 100644 (file)
@@ -1543,26 +1543,26 @@ Example:
 
 (defun shortdoc-next (&optional arg)
   "Move point to the next function.
-With prefix argument ARG, do it that many times."
+With prefix numeric argument ARG, do it that many times."
   (interactive "p" shortdoc-mode)
   (shortdoc--goto-section arg 'shortdoc-function))
 
 (defun shortdoc-previous (&optional arg)
   "Move point to the previous function.
-With prefix argument ARG, do it that many times."
+With prefix numeric argument ARG, do it that many times."
   (interactive "p" shortdoc-mode)
   (shortdoc--goto-section arg 'shortdoc-function t)
   (backward-char 1))
 
 (defun shortdoc-next-section (&optional arg)
   "Move point to the next section.
-With prefix argument ARG, do it that many times."
+With prefix numeric argument ARG, do it that many times."
   (interactive "p" shortdoc-mode)
   (shortdoc--goto-section arg 'shortdoc-section))
 
 (defun shortdoc-previous-section (&optional arg)
   "Move point to the previous section.
-With prefix argument ARG, do it that many times."
+With prefix numeric argument ARG, do it that many times."
   (interactive "p" shortdoc-mode)
   (shortdoc--goto-section arg 'shortdoc-section t)
   (forward-line -2))