]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix count of no-op functions (bug#68375)
authorXiyue Deng <manphiz@gmail.com>
Wed, 3 Jan 2024 00:31:30 +0000 (16:31 -0800)
committerEshel Yaron <me@eshelyaron.com>
Sat, 13 Jan 2024 18:22:44 +0000 (19:22 +0100)
It looks like there are actually three kinds of no-op functions.

* doc/lispref/functions.texi (Calling Functions): Fix count and
plural of no-op functions.

Copyright-paperwork-exempt: yes
(cherry picked from commit 99efe5c80f9d90de6540ef6f78504c0413947a25)

doc/lispref/functions.texi

index 29e9f04a0764002e8d7570b72e533b92a32241d1..6c6f1e259176acea3c678ebbee5e57ddd9e8b5dc 100644 (file)
@@ -982,8 +982,8 @@ lists) and call them using @code{funcall} or @code{apply}.  Functions
 that accept function arguments are often called @dfn{functionals}.
 
   Sometimes, when you call a functional, it is useful to supply a no-op
-function as the argument.  Here are two different kinds of no-op
-function:
+function as the argument.  Here are three different kinds of no-op
+functions:
 
 @defun identity argument
 This function returns @var{argument} and has no side effects.