diff options
| author | Luc Teirlinck | 2003-10-31 17:25:20 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-10-31 17:25:20 +0000 |
| commit | 6d59ebc35cc3bdb50506491b104d493640fb7da7 (patch) | |
| tree | cad9f921b2f33b907a7ae9a29aadbc7069dc0f19 /src/eval.c | |
| parent | bdda99a1651fd3b119e6c711d1a9f3d84ae63a1e (diff) | |
| download | emacs-6d59ebc35cc3bdb50506491b104d493640fb7da7.tar.gz emacs-6d59ebc35cc3bdb50506491b104d493640fb7da7.zip | |
(Fdefvaralias): Doc fix.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index 9e2ab1b1337..e5dba1b888f 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -701,8 +701,8 @@ DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0, | |||
| 701 | doc: /* Make SYMBOL a variable alias for symbol ALIASED. | 701 | doc: /* Make SYMBOL a variable alias for symbol ALIASED. |
| 702 | Setting the value of SYMBOL will subsequently set the value of ALIASED, | 702 | Setting the value of SYMBOL will subsequently set the value of ALIASED, |
| 703 | and getting the value of SYMBOL will return the value ALIASED has. | 703 | and getting the value of SYMBOL will return the value ALIASED has. |
| 704 | ALIASED nil means remove the alias; SYMBOL is unbound after that. | 704 | Third arg DOCSTRING, if non-nil, is documentation for SYMBOL. |
| 705 | Third arg DOCSTRING, if non-nil, is documentation for SYMBOL. */) | 705 | The return value is ALIASED. */) |
| 706 | (symbol, aliased, docstring) | 706 | (symbol, aliased, docstring) |
| 707 | Lisp_Object symbol, aliased, docstring; | 707 | Lisp_Object symbol, aliased, docstring; |
| 708 | { | 708 | { |