]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdefvaralias): Doc fix.
authorLuc Teirlinck <teirllm@auburn.edu>
Fri, 31 Oct 2003 17:25:20 +0000 (17:25 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Fri, 31 Oct 2003 17:25:20 +0000 (17:25 +0000)
src/eval.c

index 9e2ab1b1337481605b8730f7577abfc87c717f25..e5dba1b888f85d1fbc05fdaf2b2b506ab0f425b6 100644 (file)
@@ -701,8 +701,8 @@ 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.
-ALIASED nil means remove the alias; SYMBOL is unbound after that.
-Third arg DOCSTRING, if non-nil, is documentation for SYMBOL.  */)
+Third arg DOCSTRING, if non-nil, is documentation for SYMBOL.
+The return value is ALIASED.  */)
      (symbol, aliased, docstring)
      Lisp_Object symbol, aliased, docstring;
 {