diff options
| author | Juanma Barranquero | 2002-07-16 11:43:32 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-16 11:43:32 +0000 |
| commit | 3fdb4c50a9ffd90cad4819b5405af03f805882aa (patch) | |
| tree | 2dd87a58cfe23477ec3c5387b6adc49159292990 /etc | |
| parent | 301085d403de6fbc609f704965305fdf3e1a7db6 (diff) | |
| download | emacs-3fdb4c50a9ffd90cad4819b5405af03f805882aa.tar.gz emacs-3fdb4c50a9ffd90cad4819b5405af03f805882aa.zip | |
Fix reference to `defvaralias' as a macro.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 10 |
1 files changed, 5 insertions, 5 deletions
| @@ -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 | ||
| 1522 | This defines the symbol ALIAS-VAR as a variable alias for symbol | 1522 | This function defines the symbol ALIAS-VAR as a variable alias for |
| 1523 | BASE-VAR. This means that retrieving the value of ALIAS-VAR returns | 1523 | symbol BASE-VAR. This means that retrieving the value of ALIAS-VAR |
| 1524 | the value of BASE-VAR, and changing the value of ALIAS-VAR changes the | 1524 | returns the value of BASE-VAR, and changing the value of ALIAS-VAR |
| 1525 | value of BASE-VAR. | 1525 | changes the value of BASE-VAR. |
| 1526 | 1526 | ||
| 1527 | DOCSTRING, if present, is the documentation for ALIAS-VAR; else it has | 1527 | DOCSTRING, if present, is the documentation for ALIAS-VAR; else it has |
| 1528 | the same documentation as BASE-VAR. | 1528 | the same documentation as BASE-VAR. |