diff options
| author | Luc Teirlinck | 2005-05-05 22:40:56 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-05-05 22:40:56 +0000 |
| commit | b0c68b63aeaf18a49e183b0802caf59bb464420e (patch) | |
| tree | de8121278e6063d33b7d5abaf93b8f0388d87cb5 | |
| parent | c05fe5d549c3431f5401f4938d19e3aed878c1ff (diff) | |
| download | emacs-b0c68b63aeaf18a49e183b0802caf59bb464420e.tar.gz emacs-b0c68b63aeaf18a49e183b0802caf59bb464420e.zip | |
(Fdefvaralias): Doc fix.
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 6832f3197ad..8b6c1885727 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -725,7 +725,9 @@ DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0, | |||
| 725 | doc: /* Make SYMBOL a variable alias for symbol ALIASED. | 725 | doc: /* Make SYMBOL a variable alias for symbol ALIASED. |
| 726 | Setting the value of SYMBOL will subsequently set the value of ALIASED, | 726 | Setting the value of SYMBOL will subsequently set the value of ALIASED, |
| 727 | and getting the value of SYMBOL will return the value ALIASED has. | 727 | and getting the value of SYMBOL will return the value ALIASED has. |
| 728 | Third arg DOCSTRING, if non-nil, is documentation for SYMBOL. | 728 | Third arg DOCSTRING, if non-nil, is documentation for SYMBOL. If it is |
| 729 | omitted or nil, SYMBOL gets the documentation string of ALIASED, or of the | ||
| 730 | variable at the end of the chain of aliases, if ALIASED is itself an alias. | ||
| 729 | The return value is ALIASED. */) | 731 | The return value is ALIASED. */) |
| 730 | (symbol, aliased, docstring) | 732 | (symbol, aliased, docstring) |
| 731 | Lisp_Object symbol, aliased, docstring; | 733 | Lisp_Object symbol, aliased, docstring; |