diff options
| author | Gerd Möllmann | 2025-01-08 04:04:49 +0100 |
|---|---|---|
| committer | Gerd Möllmann | 2025-01-08 04:04:49 +0100 |
| commit | 2838be3fd554cf5965967e873a52c1e69363f170 (patch) | |
| tree | a88bd632c1e33c2f304c81cfe1922da7dcad7cb9 /src/data.c | |
| parent | 2117baac06d6ed7aa84aa12870de2a9e2942a77e (diff) | |
| parent | 601a1f1f2797488ea40292c27945fbfbe1bc3241 (diff) | |
| download | emacs-2838be3fd554cf5965967e873a52c1e69363f170.tar.gz emacs-2838be3fd554cf5965967e873a52c1e69363f170.zip | |
Merge branch 'master' into scratch/igc
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/data.c b/src/data.c index f4e17b5ef8c..b5712fdb4d2 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter. | 1 | /* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter. |
| 2 | Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2024 Free Software | 2 | Copyright (C) 1985-1986, 1988, 1993-1995, 1997-2025 Free Software |
| 3 | Foundation, Inc. | 3 | Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -762,7 +762,7 @@ global value outside of any lexical scope. */) | |||
| 762 | breaking backward compatibility, as some users of fboundp may | 762 | breaking backward compatibility, as some users of fboundp may |
| 763 | expect t in particular, rather than any true value. */ | 763 | expect t in particular, rather than any true value. */ |
| 764 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, | 764 | DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, |
| 765 | doc: /* Return t if SYMBOL's function definition is not void. */) | 765 | doc: /* Return t if SYMBOL's function definition is not nil. */) |
| 766 | (Lisp_Object symbol) | 766 | (Lisp_Object symbol) |
| 767 | { | 767 | { |
| 768 | CHECK_SYMBOL (symbol); | 768 | CHECK_SYMBOL (symbol); |
| @@ -788,12 +788,12 @@ See also `fmakunbound'. */) | |||
| 788 | } | 788 | } |
| 789 | 789 | ||
| 790 | DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, | 790 | DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, |
| 791 | doc: /* Make SYMBOL's function definition be void. | 791 | doc: /* Make SYMBOL's function definition be nil. |
| 792 | Return SYMBOL. | 792 | Return SYMBOL. |
| 793 | 793 | ||
| 794 | If a function definition is void, trying to call a function by that | 794 | If a function definition is nil, trying to call a function by |
| 795 | name will cause a `void-function' error. For more details, see Info | 795 | that name will cause a `void-function' error. For more details, see |
| 796 | node `(elisp) Function Cells'. | 796 | Info node `(elisp) Function Cells'. |
| 797 | 797 | ||
| 798 | See also `makunbound'. */) | 798 | See also `makunbound'. */) |
| 799 | (register Lisp_Object symbol) | 799 | (register Lisp_Object symbol) |
| @@ -806,7 +806,7 @@ See also `makunbound'. */) | |||
| 806 | } | 806 | } |
| 807 | 807 | ||
| 808 | DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, | 808 | DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, |
| 809 | doc: /* Return SYMBOL's function definition, or nil if that is void. */) | 809 | doc: /* Return SYMBOL's function definition. */) |
| 810 | (Lisp_Object symbol) | 810 | (Lisp_Object symbol) |
| 811 | { | 811 | { |
| 812 | CHECK_SYMBOL (symbol); | 812 | CHECK_SYMBOL (symbol); |