summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-07-22 08:36:08 +0300
committerEli Zaretskii <eliz@gnu.org>2023-07-22 08:36:08 +0300
commit101455cb8534d07518871c0287e4861e09f22a32 (patch)
treef16511ec3e956232c827141f911f61e85635663d
parent6152a411905a3bff7dc73012413818d5c9b6348a (diff)
downloademacs-101455cb8534d07518871c0287e4861e09f22a32.tar.gz
; * lisp/subr.el (ignore, always): Doc fixes. (Bug#64776)
-rw-r--r--lisp/subr.el8
1 files 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)