diff options
| author | Miles Bader <miles@gnu.org> | 2001-10-06 10:43:21 +0000 |
|---|---|---|
| committer | Miles Bader <miles@gnu.org> | 2001-10-06 10:43:21 +0000 |
| commit | 57b338e898bd3e9afccf86926a811143f59643c3 (patch) | |
| tree | eb768bc3b32d5de906b24578d5d15046cac8e355 | |
| parent | 2a34a036ff6e0e88ee42a44440362608d3db3e74 (diff) | |
| download | emacs-57b338e898bd3e9afccf86926a811143f59643c3.tar.gz | |
(Variable Aliases): It's `@defmac', not `@defmacro'.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/variables.texi | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 03b6fcb361b..6c5c4091ba4 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,7 @@ +2001-10-06 Miles Bader <miles@gnu.org> + + * variables.texi (Variable Aliases): It's `@defmac', not `@defmacro'. + 2001-10-04 Gerd Moellmann <gerd@gnu.org> * variables.texi (Variable Aliases): New node. diff --git a/lispref/variables.texi b/lispref/variables.texi index 097961e98bd..17f4d28df3a 100644 --- a/lispref/variables.texi +++ b/lispref/variables.texi @@ -1666,12 +1666,12 @@ chosen, or because its meaning has partly changed---it can be useful to keep the old name as an @emph{alias} of the new one for compatibility. You can do this with @code{defvaralias}. -@defmacro defvaralias alias-var base-var +@defmac defvaralias alias-var base-var This function defines the symbol @var{alias-var} as a variable alias for symbol @var{base-var}. This means that retrieving the value of @var{alias-var} returns the value of @var{base-var}, and changing the value of @var{alias-var} changes the value of @var{base-var}. -@end defmacro +@end defmac @defun indirect-variable variable This function returns the variable at the end of the chain of aliases |
