summaryrefslogtreecommitdiff
path: root/doc/lispref/variables.texi
diff options
context:
space:
mode:
authorVladimir Sedach <vas@oneofus.la>2023-06-26 22:50:59 -0600
committerEli Zaretskii <eliz@gnu.org>2023-06-27 14:21:49 +0300
commit53332bdf625c5a92f2c33f9770cf34052a7c4d36 (patch)
treee7e9b0ebd73f0059dda818775c3ddf12d6134383 /doc/lispref/variables.texi
parent162c9c058eba104b3f2b73ac29533372c08977d8 (diff)
downloademacs-53332bdf625c5a92f2c33f9770cf34052a7c4d36.tar.gz
emacs-53332bdf625c5a92f2c33f9770cf34052a7c4d36.tar.bz2
emacs-53332bdf625c5a92f2c33f9770cf34052a7c4d36.zip
; * doc/lispref/variables.texi: Fix define-obsolete-variable-alias arglist
The WHEN argument is not optional anymore (bug#64312) Copyright-paperwork-exempt: yes
Diffstat (limited to 'doc/lispref/variables.texi')
-rw-r--r--doc/lispref/variables.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index 755109aac1e..f7322e11365 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -2589,7 +2589,7 @@ can be either @code{get} or @code{set}.
You can make two variables synonyms and declare one obsolete at the
same time using the macro @code{define-obsolete-variable-alias}.
-@defmac define-obsolete-variable-alias obsolete-name current-name &optional when docstring
+@defmac define-obsolete-variable-alias obsolete-name current-name when &optional docstring
This macro marks the variable @var{obsolete-name} as obsolete and also
makes it an alias for the variable @var{current-name}. It is
equivalent to the following: