aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman2001-08-25 02:05:37 +0000
committerRichard M. Stallman2001-08-25 02:05:37 +0000
commit7b67d693f21abb7cc22385d9943c8ff672d4ef64 (patch)
tree186dbfe18f0011b5e8f885e53229288980cd713e /lispref
parent48dbca2cb97d412cb4c1e55a8cabde43a111a10f (diff)
downloademacs-7b67d693f21abb7cc22385d9943c8ff672d4ef64.tar.gz
emacs-7b67d693f21abb7cc22385d9943c8ff672d4ef64.zip
Minor clarification.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/symbols.texi13
1 files changed, 7 insertions, 6 deletions
diff --git a/lispref/symbols.texi b/lispref/symbols.texi
index 14f5c088606..e9459de708c 100644
--- a/lispref/symbols.texi
+++ b/lispref/symbols.texi
@@ -85,14 +85,15 @@ value. Certain symbols have values that cannot be changed; these
85include @code{nil} and @code{t}, and any symbol whose name starts with 85include @code{nil} and @code{t}, and any symbol whose name starts with
86@samp{:} (those are called @dfn{keywords}). @xref{Constant Variables}. 86@samp{:} (those are called @dfn{keywords}). @xref{Constant Variables}.
87 87
88 In normal usage, the function cell usually contains a function 88 We often refer to ``the function @code{foo}'' when we really mean
89the function stored in the function cell of the symbol @code{foo}. We
90make the distinction explicit only when necessary. In normal
91usage, the function cell usually contains a function
89(@pxref{Functions}) or a macro (@pxref{Macros}), as that is what the 92(@pxref{Functions}) or a macro (@pxref{Macros}), as that is what the
90Lisp interpreter expects to see there (@pxref{Evaluation}). Keyboard 93Lisp interpreter expects to see there (@pxref{Evaluation}). Keyboard
91macros (@pxref{Keyboard Macros}), keymaps (@pxref{Keymaps}) and autoload 94macros (@pxref{Keyboard Macros}), keymaps (@pxref{Keymaps}) and
92objects (@pxref{Autoloading}) are also sometimes stored in the function 95autoload objects (@pxref{Autoloading}) are also sometimes stored in
93cells of symbols. We often refer to ``the function @code{foo}'' when we 96the function cells of symbols.
94really mean the function stored in the function cell of the symbol
95@code{foo}. We make the distinction only when necessary.
96 97
97 The property list cell normally should hold a correctly formatted 98 The property list cell normally should hold a correctly formatted
98property list (@pxref{Property Lists}), as a number of functions expect 99property list (@pxref{Property Lists}), as a number of functions expect