diff options
| author | Gerd Möllmann | 2024-11-16 04:31:46 +0100 |
|---|---|---|
| committer | Gerd Möllmann | 2024-11-16 04:31:46 +0100 |
| commit | 36c81859f6c3d798fa1c1d9eb45cf730e0237e04 (patch) | |
| tree | 3710ea1733b746f420836fc892b7a1e52b28cb66 /src/data.c | |
| parent | f62d70f52f4f6b7ed158d618bf790df21f171172 (diff) | |
| parent | 29098a291f535c8e2be114171308169f025de43f (diff) | |
| download | emacs-36c81859f6c3d798fa1c1d9eb45cf730e0237e04.tar.gz emacs-36c81859f6c3d798fa1c1d9eb45cf730e0237e04.zip | |
Merge branch 'master' into scratch/tty-child-frames
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c index fd2d9705642..66cf34c1e60 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -756,7 +756,7 @@ global value outside of any lexical scope. */) | |||
| 756 | breaking backward compatibility, as some users of fboundp may | 756 | breaking backward compatibility, as some users of fboundp may |
| 757 | expect t in particular, rather than any true value. */ | 757 | expect t in particular, rather than any true value. */ |
| 758 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, | 758 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, |
| 759 | doc: /* Return t if SYMBOL's function definition is not void. */) | 759 | doc: /* Return t if SYMBOL's function definition is not nil. */) |
| 760 | (Lisp_Object symbol) | 760 | (Lisp_Object symbol) |
| 761 | { | 761 | { |
| 762 | CHECK_SYMBOL (symbol); | 762 | CHECK_SYMBOL (symbol); |
| @@ -782,12 +782,12 @@ See also `fmakunbound'. */) | |||
| 782 | } | 782 | } |
| 783 | 783 | ||
| 784 | DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, | 784 | DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, |
| 785 | doc: /* Make SYMBOL's function definition be void. | 785 | doc: /* Make SYMBOL's function definition be nil. |
| 786 | Return SYMBOL. | 786 | Return SYMBOL. |
| 787 | 787 | ||
| 788 | If a function definition is void, trying to call a function by that | 788 | If a function definition is nil, trying to call a function by |
| 789 | name will cause a `void-function' error. For more details, see Info | 789 | that name will cause a `void-function' error. For more details, see |
| 790 | node `(elisp) Function Cells'. | 790 | Info node `(elisp) Function Cells'. |
| 791 | 791 | ||
| 792 | See also `makunbound'. */) | 792 | See also `makunbound'. */) |
| 793 | (register Lisp_Object symbol) | 793 | (register Lisp_Object symbol) |
| @@ -800,7 +800,7 @@ See also `makunbound'. */) | |||
| 800 | } | 800 | } |
| 801 | 801 | ||
| 802 | DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, | 802 | DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, |
| 803 | doc: /* Return SYMBOL's function definition, or nil if that is void. */) | 803 | doc: /* Return SYMBOL's function definition. */) |
| 804 | (Lisp_Object symbol) | 804 | (Lisp_Object symbol) |
| 805 | { | 805 | { |
| 806 | CHECK_SYMBOL (symbol); | 806 | CHECK_SYMBOL (symbol); |