diff options
| author | Richard M. Stallman | 2002-07-18 15:04:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-07-18 15:04:29 +0000 |
| commit | 9614322710d0ae9f9605d204fc0e57f28d7592ec (patch) | |
| tree | 293555f7e715f09c8606f00909dae997126ef6f7 /src/data.c | |
| parent | bf38c59275c24669896f970ab3f25770356f9c9a (diff) | |
| download | emacs-9614322710d0ae9f9605d204fc0e57f28d7592ec.tar.gz emacs-9614322710d0ae9f9605d204fc0e57f28d7592ec.zip | |
(Fdefalias): Doc fix.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 5 |
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 | ||
| 709 | DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0, | 709 | DEFUN ("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. |
| 711 | Associates the function with the current load file, if any. */) | 711 | Associates the function with the current load file, if any. |
| 712 | The optional third argument DOCSTRING specifies the documentation string | ||
| 713 | for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string | ||
| 714 | determined 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 | { |