aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/symbols.texi13
-rw-r--r--man/macos.texi2
2 files changed, 8 insertions, 7 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
diff --git a/man/macos.texi b/man/macos.texi
index 5e7e2ed7d02..cb7416618f5 100644
--- a/man/macos.texi
+++ b/man/macos.texi
@@ -229,7 +229,7 @@ string.
229@findex mac-file-name-to-posix 229@findex mac-file-name-to-posix
230@findex posix-file-name-to-mac 230@findex posix-file-name-to-mac
231 The function @code{mac-file-name-to-posix} takes a Mac file name and 231 The function @code{mac-file-name-to-posix} takes a Mac file name and
232returns the Posix equivalent. The function 232returns the GNU or Unix equivalent. The function
233@code{posix-file-name-to-mac} performs the opposite conversion. They 233@code{posix-file-name-to-mac} performs the opposite conversion. They
234are useful for constructing AppleScript commands to be passed to 234are useful for constructing AppleScript commands to be passed to
235@code{do-applescript}. 235@code{do-applescript}.