aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorGlenn Morris2014-02-19 23:38:47 -0800
committerGlenn Morris2014-02-19 23:38:47 -0800
commit189e70077d1c088d4892a1377da2c4da156867b3 (patch)
tree764aefda76d51d17491510f5e214517e215caa40 /src/data.c
parenteee0d650346cc3182f08a88940f0e06325721c70 (diff)
downloademacs-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.c4
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.
738The optional third argument DOCSTRING specifies the documentation string 738The optional third argument DOCSTRING specifies the documentation string
739for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string 739for SYMBOL; if it is omitted or nil, SYMBOL uses the documentation string
740determined by DEFINITION. 740determined by DEFINITION.
741
742Internally, this normally uses `fset', but if SYMBOL has a
743`defalias-fset-function' property, the associated value is used instead.
744
741The return value is undefined. */) 745The 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{