diff options
| -rw-r--r-- | lispref/symbols.texi | 13 | ||||
| -rw-r--r-- | man/macos.texi | 2 |
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 | |||
| 85 | include @code{nil} and @code{t}, and any symbol whose name starts with | 85 | include @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 |
| 89 | the function stored in the function cell of the symbol @code{foo}. We | ||
| 90 | make the distinction explicit only when necessary. In normal | ||
| 91 | usage, 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 |
| 90 | Lisp interpreter expects to see there (@pxref{Evaluation}). Keyboard | 93 | Lisp interpreter expects to see there (@pxref{Evaluation}). Keyboard |
| 91 | macros (@pxref{Keyboard Macros}), keymaps (@pxref{Keymaps}) and autoload | 94 | macros (@pxref{Keyboard Macros}), keymaps (@pxref{Keymaps}) and |
| 92 | objects (@pxref{Autoloading}) are also sometimes stored in the function | 95 | autoload objects (@pxref{Autoloading}) are also sometimes stored in |
| 93 | cells of symbols. We often refer to ``the function @code{foo}'' when we | 96 | the function cells of symbols. |
| 94 | really 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 |
| 98 | property list (@pxref{Property Lists}), as a number of functions expect | 99 | property 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 |
| 232 | returns the Posix equivalent. The function | 232 | returns 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 |
| 234 | are useful for constructing AppleScript commands to be passed to | 234 | are useful for constructing AppleScript commands to be passed to |
| 235 | @code{do-applescript}. | 235 | @code{do-applescript}. |