diff options
| author | Shynur | 2023-04-07 11:45:28 +0800 |
|---|---|---|
| committer | Eli Zaretskii | 2023-05-06 12:46:23 +0300 |
| commit | a081b6625bd3afa67d82403de8fa02de7e428bfd (patch) | |
| tree | 17e20cc9d396690c2b5e716851405b1b0b91f923 | |
| parent | 97b818a4fb91668f70bc9b298e10fd8ae600339b (diff) | |
| download | emacs-a081b6625bd3afa67d82403de8fa02de7e428bfd.tar.gz emacs-a081b6625bd3afa67d82403de8fa02de7e428bfd.zip | |
; Updated Elispref-Manual: `nil' cannot be defun'ed
* doc/lispref/functions.texi (Function Cells): Fix inaccuracy.
(Bug#62746)
| -rw-r--r-- | doc/lispref/functions.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 948c6bb96f8..4ab7a194eb0 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1482,7 +1482,7 @@ the symbol as a function, Emacs signals a @code{void-function} error. | |||
| 1482 | Note that void is not the same as @code{nil} or the symbol | 1482 | Note that void is not the same as @code{nil} or the symbol |
| 1483 | @code{void}. The symbols @code{nil} and @code{void} are Lisp objects, | 1483 | @code{void}. The symbols @code{nil} and @code{void} are Lisp objects, |
| 1484 | and can be stored into a function cell just as any other object can be | 1484 | and can be stored into a function cell just as any other object can be |
| 1485 | (and they can be valid functions if you define them in turn with | 1485 | (and @code{void} can be a valid function if you define it with |
| 1486 | @code{defun}). A void function cell contains no object whatsoever. | 1486 | @code{defun}). A void function cell contains no object whatsoever. |
| 1487 | 1487 | ||
| 1488 | You can test the voidness of a symbol's function definition with | 1488 | You can test the voidness of a symbol's function definition with |