From: Eli Zaretskii Date: Sat, 22 Jul 2023 05:36:08 +0000 (+0300) Subject: ; * lisp/subr.el (ignore, always): Doc fixes. (Bug#64776) X-Git-Tag: emacs-29.1-rc1~11 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=101455cb8534d07518871c0287e4861e09f22a32;p=emacs.git ; * lisp/subr.el (ignore, always): Doc fixes. (Bug#64776) --- 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)