aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-16 11:43:32 +0000
committerJuanma Barranquero2002-07-16 11:43:32 +0000
commit3fdb4c50a9ffd90cad4819b5405af03f805882aa (patch)
tree2dd87a58cfe23477ec3c5387b6adc49159292990 /etc
parent301085d403de6fbc609f704965305fdf3e1a7db6 (diff)
downloademacs-3fdb4c50a9ffd90cad4819b5405af03f805882aa.tar.gz
emacs-3fdb4c50a9ffd90cad4819b5405af03f805882aa.zip
Fix reference to `defvaralias' as a macro.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index b6babdcf61f..d3089900ac9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1517,12 +1517,12 @@ searching for an executable resp. an elisp file.
1517 1517
1518** Variable aliases have been implemented: 1518** Variable aliases have been implemented:
1519 1519
1520- Macro: defvaralias ALIAS-VAR BASE-VAR [DOCSTRING] 1520- Function: defvaralias ALIAS-VAR BASE-VAR [DOCSTRING]
1521 1521
1522This defines the symbol ALIAS-VAR as a variable alias for symbol 1522This function defines the symbol ALIAS-VAR as a variable alias for
1523BASE-VAR. This means that retrieving the value of ALIAS-VAR returns 1523symbol BASE-VAR. This means that retrieving the value of ALIAS-VAR
1524the value of BASE-VAR, and changing the value of ALIAS-VAR changes the 1524returns the value of BASE-VAR, and changing the value of ALIAS-VAR
1525value of BASE-VAR. 1525changes the value of BASE-VAR.
1526 1526
1527DOCSTRING, if present, is the documentation for ALIAS-VAR; else it has 1527DOCSTRING, if present, is the documentation for ALIAS-VAR; else it has
1528the same documentation as BASE-VAR. 1528the same documentation as BASE-VAR.