emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 101455cb853: ; * lisp/subr.el (ignore, always): Doc fixes. (Bu


From: Eli Zaretskii
Subject: emacs-29 101455cb853: ; * lisp/subr.el (ignore, always): Doc fixes. (Bug#64776)
Date: Sat, 22 Jul 2023 01:36:38 -0400 (EDT)

branch: emacs-29
commit 101455cb8534d07518871c0287e4861e09f22a32
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; * lisp/subr.el (ignore, always): Doc fixes.  (Bug#64776)
---
 lisp/subr.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/subr.el b/lisp/subr.el
index 43cf4572fe2..872c701dbe7 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -399,16 +399,16 @@ PREFIX is a string, and defaults to \"g\"."
     (make-symbol (format "%s%d" (or prefix "g") num))))
 
 (defun ignore (&rest _arguments)
-  "Do nothing and return nil.
-This function accepts any number of ARGUMENTS, but ignores them.
+  "Ignore ARGUMENTS, do nothing, and return nil.
+This function accepts any number of arguments in ARGUMENTS.
 Also see `always'."
   (declare (completion ignore))
   (interactive)
   nil)
 
 (defun always (&rest _arguments)
-  "Do nothing and return t.
-This function accepts any number of ARGUMENTS, but ignores them.
+  "Ignore ARGUMENTS, do nothing, and return t.
+This function accepts any number of arguments in ARGUMENTS.
 Also see `ignore'."
   t)
 



reply via email to

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