comparison lispref/variables.texi @ 61856:86712739476e

Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 26 Apr 2005 11:00:56 +0000
parents 48375a96a41a
children 348a53b1dd79
comparison
equal deleted inserted replaced
61855:bc5bdf5bff56 61856:86712739476e
1720 stage in the future. 1720 stage in the future.
1721 1721
1722 @defmac make-obsolete-variable variable new &optional when 1722 @defmac make-obsolete-variable variable new &optional when
1723 This macro makes the byte-compiler warn that the variable 1723 This macro makes the byte-compiler warn that the variable
1724 @var{variable} is obsolete. If @var{new} is a symbol, it is the 1724 @var{variable} is obsolete. If @var{new} is a symbol, it is the
1725 variable's new name; the warning messages say to use @var{new} 1725 variable's new name; then the warning messages says to use @var{new}
1726 instead of @var{variable}. 1726 instead of @var{variable}. If @var{new} is a string, this is the
1727 If @var{new} is a string, this is the message and there is no 1727 message and there is no replacement variable.
1728 replacement variable.
1729 1728
1730 If provided, @var{when} should be a string indicating when the 1729 If provided, @var{when} should be a string indicating when the
1731 variable was first made obsolete---for example, a date or a release 1730 variable was first made obsolete---for example, a date or a release
1732 number. 1731 number.
1733 @end defmac 1732 @end defmac