aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorGerd Möllmann2025-01-08 04:04:49 +0100
committerGerd Möllmann2025-01-08 04:04:49 +0100
commit2838be3fd554cf5965967e873a52c1e69363f170 (patch)
treea88bd632c1e33c2f304c81cfe1922da7dcad7cb9 /src/data.c
parent2117baac06d6ed7aa84aa12870de2a9e2942a77e (diff)
parent601a1f1f2797488ea40292c27945fbfbe1bc3241 (diff)
downloademacs-2838be3fd554cf5965967e873a52c1e69363f170.tar.gz
emacs-2838be3fd554cf5965967e873a52c1e69363f170.zip
Merge branch 'master' into scratch/igc
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c14
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
5This file is part of GNU Emacs. 5This 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. */
764DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, 764DEFUN ("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
790DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0, 790DEFUN ("fmakunbound", Ffmakunbound, Sfmakunbound, 1, 1, 0,
791 doc: /* Make SYMBOL's function definition be void. 791 doc: /* Make SYMBOL's function definition be nil.
792Return SYMBOL. 792Return SYMBOL.
793 793
794If a function definition is void, trying to call a function by that 794If a function definition is nil, trying to call a function by
795name will cause a `void-function' error. For more details, see Info 795that name will cause a `void-function' error. For more details, see
796node `(elisp) Function Cells'. 796Info node `(elisp) Function Cells'.
797 797
798See also `makunbound'. */) 798See also `makunbound'. */)
799 (register Lisp_Object symbol) 799 (register Lisp_Object symbol)
@@ -806,7 +806,7 @@ See also `makunbound'. */)
806} 806}
807 807
808DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, 808DEFUN ("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);