aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-18 15:04:29 +0000
committerRichard M. Stallman2002-07-18 15:04:29 +0000
commit9614322710d0ae9f9605d204fc0e57f28d7592ec (patch)
tree293555f7e715f09c8606f00909dae997126ef6f7 /src/data.c
parentbf38c59275c24669896f970ab3f25770356f9c9a (diff)
downloademacs-9614322710d0ae9f9605d204fc0e57f28d7592ec.tar.gz
emacs-9614322710d0ae9f9605d204fc0e57f28d7592ec.zip
(Fdefalias): Doc fix.
Diffstat (limited to 'src/data.c')
-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{