diff options
| author | Glenn Morris | 2014-02-19 23:38:47 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-02-19 23:38:47 -0800 |
| commit | 189e70077d1c088d4892a1377da2c4da156867b3 (patch) | |
| tree | 764aefda76d51d17491510f5e214517e215caa40 /src/data.c | |
| parent | eee0d650346cc3182f08a88940f0e06325721c70 (diff) | |
| download | emacs-189e70077d1c088d4892a1377da2c4da156867b3.tar.gz emacs-189e70077d1c088d4892a1377da2c4da156867b3.zip | |
Some doc for defalias-fset-function
* doc/lispref/functions.texi (Defining Functions):
Mention defalias-fset-function.
* src/data.c (Fdefalias): Doc fix.
* etc/NEWS: Related edit.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/data.c b/src/data.c index a52cee66b57..4ef81f2474e 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -738,6 +738,10 @@ Associates the function with the current load file, if any. | |||
| 738 | The optional third argument DOCSTRING specifies the documentation string | 738 | The optional third argument DOCSTRING specifies the documentation string |
| 739 | for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string | 739 | for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string |
| 740 | determined by DEFINITION. | 740 | determined by DEFINITION. |
| 741 | |||
| 742 | Internally, this normally uses `fset', but if SYMBOL has a | ||
| 743 | `defalias-fset-function' property, the associated value is used instead. | ||
| 744 | |||
| 741 | The return value is undefined. */) | 745 | The return value is undefined. */) |
| 742 | (register Lisp_Object symbol, Lisp_Object definition, Lisp_Object docstring) | 746 | (register Lisp_Object symbol, Lisp_Object definition, Lisp_Object docstring) |
| 743 | { | 747 | { |