]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdefvaralias): Doc fix.
authorLuc Teirlinck <teirllm@auburn.edu>
Thu, 5 May 2005 22:40:56 +0000 (22:40 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Thu, 5 May 2005 22:40:56 +0000 (22:40 +0000)
src/eval.c

index 6832f3197addecde3d74c5dcf14c159e5bdf0af7..8b6c188572727c6fe533f35e4f1936810f2b5c18 100644 (file)
@@ -725,7 +725,9 @@ DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0,
        doc: /* Make SYMBOL a variable alias for symbol ALIASED.
 Setting the value of SYMBOL will subsequently set the value of ALIASED,
 and getting the value of SYMBOL will return the value ALIASED has.
-Third arg DOCSTRING, if non-nil, is documentation for SYMBOL.
+Third arg DOCSTRING, if non-nil, is documentation for SYMBOL.  If it is
+omitted or nil, SYMBOL gets the documentation string of ALIASED, or of the
+variable at the end of the chain of aliases, if ALIASED is itself an alias.
 The return value is ALIASED.  */)
      (symbol, aliased, docstring)
      Lisp_Object symbol, aliased, docstring;