emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 76b7a59367: ; Clarify wording of some doc strings in shortdoc.el


From: Eli Zaretskii
Subject: master 76b7a59367: ; Clarify wording of some doc strings in shortdoc.el
Date: Sun, 25 Sep 2022 15:50:27 -0400 (EDT)

branch: master
commit 76b7a593675c95910881b6551b94ddd23f3b1656
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Clarify wording of some doc strings in shortdoc.el
    
    * lisp/emacs-lisp/shortdoc.el (shortdoc-next, shortdoc-previous)
    (shortdoc-next-section, shortdoc-previous-section): Clarify
    wording.
---
 lisp/emacs-lisp/shortdoc.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 6d61ed4ac1..4cfd658e10 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]