summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)