diff options
| author | Richard M. Stallman | 2006-07-03 15:41:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-03 15:41:26 +0000 |
| commit | e102f0d8c4d1b5503373ef69b287dcfb359f3aa9 (patch) | |
| tree | a8c9bf947db82a745aad1668a3636c29b0907d22 /src/eval.c | |
| parent | da7a71c1774c986b8121aaee5bfb5a46433fc943 (diff) | |
| download | emacs-e102f0d8c4d1b5503373ef69b287dcfb359f3aa9.tar.gz emacs-e102f0d8c4d1b5503373ef69b287dcfb359f3aa9.zip | |
(Fdefvaralias): Doc fix.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index 5f8d266ec7b..30df5f8ea36 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -749,8 +749,7 @@ usage: (defmacro NAME ARGLIST [DOCSTRING] [DECL] BODY...) */) | |||
| 749 | 749 | ||
| 750 | DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0, | 750 | DEFUN ("defvaralias", Fdefvaralias, Sdefvaralias, 2, 3, 0, |
| 751 | doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE. | 751 | doc: /* Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE. |
| 752 | Setting the value of NEW-ALIAS will subsequently set the value of BASE-VARIABLE, | 752 | Aliased variables always have the same value; setting one sets the other. |
| 753 | and getting the value of NEW-ALIAS will return the value BASE-VARIABLE has. | ||
| 754 | Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is | 753 | Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is |
| 755 | omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE, | 754 | omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE, |
| 756 | or of the variable at the end of the chain of aliases, if BASE-VARIABLE is | 755 | or of the variable at the end of the chain of aliases, if BASE-VARIABLE is |