aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/data.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 0bd50ef4a3d..88d9f25d2eb 100644
--- a/src/data.c
+++ b/src/data.c
@@ -708,7 +708,10 @@ extern Lisp_Object Qfunction_documentation;
708 708
709DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0, 709DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0,
710 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. 710 doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION.
711Associates the function with the current load file, if any. */) 711Associates the function with the current load file, if any.
712The optional third argument DOCSTRING specifies the documentation string
713for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string
714determined by DEFINITION. */)
712 (symbol, definition, docstring) 715 (symbol, definition, docstring)
713 register Lisp_Object symbol, definition, docstring; 716 register Lisp_Object symbol, definition, docstring;
714{ 717{