]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/subr.el (ignore, always): Doc fixes. (Bug#64776)
authorEli Zaretskii <eliz@gnu.org>
Sat, 22 Jul 2023 05:36:08 +0000 (08:36 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 22 Jul 2023 05:36:08 +0000 (08:36 +0300)
lisp/subr.el

index 43cf4572fe237668f12d6caddf7c26e98d28ac28..872c701dbe79ca14071d3f8fcb5a4ba86b187541 100644 (file)
@@ -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)