From 101455cb8534d07518871c0287e4861e09f22a32 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 22 Jul 2023 08:36:08 +0300 Subject: [PATCH] ; * 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) -- 2.39.2