]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of apply-partially
authorStefan Kangas <stefan@marxist.se>
Sat, 23 Oct 2021 16:42:14 +0000 (18:42 +0200)
committerStefan Kangas <stefan@marxist.se>
Sat, 23 Oct 2021 16:47:00 +0000 (18:47 +0200)
* doc/lispref/functions.texi (Calling Functions): Improve
documentation of 'apply-partially' to be slightly more clear with
regards to function arity.  (Bug#17623)

doc/lispref/functions.texi

index c856557c3cba0054031cfdaba46253116599b154..f95c6d3656b16a388388ce59617c96cd674c59aa 100644 (file)
@@ -826,12 +826,13 @@ This function returns a new function which, when called, will call
 @var{func} with the list of arguments composed from @var{args} and
 additional arguments specified at the time of the call.  If @var{func}
 accepts @var{n} arguments, then a call to @code{apply-partially} with
-@w{@code{@var{m} < @var{n}}} arguments will produce a new function of
+@w{@code{@var{m} <= @var{n}}} arguments will produce a new function of
 @w{@code{@var{n} - @var{m}}} arguments.
 
 Here's how we could define the built-in function @code{1+}, if it
 didn't exist, using @code{apply-partially} and @code{+}, another
-built-in function:
+built-in function:@footnote{Note that unlike the built-in function
+this version accepts any number of arguments.}
 
 @example
 @group