diff options
| author | Eli Zaretskii | 2024-10-27 16:07:08 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-10-27 16:07:08 +0200 |
| commit | 55a8cec013e8879da2c79cd8fbe387d8d2822166 (patch) | |
| tree | 852906c9a2b03d21a1bc292d483790eb242fc510 | |
| parent | c78b4d2b31d9b763aa506d8498f70b3e651bbbf5 (diff) | |
| download | emacs-55a8cec013e8879da2c79cd8fbe387d8d2822166.tar.gz emacs-55a8cec013e8879da2c79cd8fbe387d8d2822166.zip | |
Another 'void' update
* doc/lispref/symbols.texi (Symbol Components): Another update due
to the change in 'void' function implementation. (Bug#73886)
| -rw-r--r-- | doc/lispref/symbols.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/symbols.texi b/doc/lispref/symbols.texi index c76bf3d3820..c3dc08df2df 100644 --- a/doc/lispref/symbols.texi +++ b/doc/lispref/symbols.texi | |||
| @@ -100,11 +100,11 @@ the contents of a symbol's function cell, use the function | |||
| 100 | property list. To get a symbol's property list, use the function | 100 | property list. To get a symbol's property list, use the function |
| 101 | @code{symbol-plist}. @xref{Symbol Properties}. | 101 | @code{symbol-plist}. @xref{Symbol Properties}. |
| 102 | 102 | ||
| 103 | The function cell or the value cell may be @dfn{void}, which means | 103 | The value cell may be @dfn{void}, which means that the cell does not |
| 104 | that the cell does not reference any object. (This is not the same | 104 | reference any object. (This is not the same thing as holding the symbol |
| 105 | thing as holding the symbol @code{void}, nor the same as holding the | 105 | @code{void}, nor the same as holding the symbol @code{nil}.) Examining |
| 106 | symbol @code{nil}.) Examining a function or value cell that is void | 106 | a value cell that is void results in an error, such as @samp{Symbol's |
| 107 | results in an error, such as @samp{Symbol's value as variable is void}. | 107 | value as variable is void}. |
| 108 | 108 | ||
| 109 | Because each symbol has separate value and function cells, variables | 109 | Because each symbol has separate value and function cells, variables |
| 110 | names and function names do not conflict. For example, the symbol | 110 | names and function names do not conflict. For example, the symbol |