diff options
Diffstat (limited to 'src')
| -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 | { |