diff options
| author | Richard M. Stallman | 1996-12-26 22:40:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-26 22:40:52 +0000 |
| commit | baa573a3791927e88fad979ac8ffe34773fe7e93 (patch) | |
| tree | 1ec4cf45032588e86e69f4ad3edc10c7f28086d5 | |
| parent | 8c0b5540a7667ae75e20beff985b0ac20f1b5719 (diff) | |
| download | emacs-baa573a3791927e88fad979ac8ffe34773fe7e93.tar.gz emacs-baa573a3791927e88fad979ac8ffe34773fe7e93.zip | |
Change arg name for fset.
| -rw-r--r-- | lispref/functions.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi index 27a521df702..035d231cf48 100644 --- a/lispref/functions.texi +++ b/lispref/functions.texi | |||
| @@ -953,9 +953,9 @@ error. (See also @code{makunbound}, in @ref{Local Variables}.) | |||
| 953 | @end example | 953 | @end example |
| 954 | @end defun | 954 | @end defun |
| 955 | 955 | ||
| 956 | @defun fset symbol object | 956 | @defun fset symbol definition |
| 957 | This function stores @var{object} in the function cell of @var{symbol}. | 957 | This function stores @var{definition} in the function cell of @var{symbol}. |
| 958 | The result is @var{object}. Normally @var{object} should be a function | 958 | The result is @var{definition}. Normally @var{definition} should be a function |
| 959 | or the name of a function, but this is not checked. | 959 | or the name of a function, but this is not checked. |
| 960 | 960 | ||
| 961 | There are three normal uses of this function: | 961 | There are three normal uses of this function: |