aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-04-26 11:00:56 +0000
committerRichard M. Stallman2005-04-26 11:00:56 +0000
commit49c650714b9b5601a85f91e4a26c532cb816fcc1 (patch)
treee12b27a08ca52351a5c815da550480a8d2f9ff22
parent0a3e46de17584a2bd6045895615d83f9127681f0 (diff)
downloademacs-49c650714b9b5601a85f91e4a26c532cb816fcc1.tar.gz
emacs-49c650714b9b5601a85f91e4a26c532cb816fcc1.zip
Fix previous change.
-rw-r--r--lisp/emacs-lisp/eldoc.el2
-rw-r--r--lispref/variables.texi7
2 files changed, 4 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index 29167c70812..b23217151e3 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -45,7 +45,7 @@
45 45
46;; Major modes for other languages may use Eldoc by defining an 46;; Major modes for other languages may use Eldoc by defining an
47;; appropriate function as the buffer-local value of 47;; appropriate function as the buffer-local value of
48;; `eldoc-print-current-symbol-info-function'. 48;; `eldoc-documentation-function'.
49 49
50;;; Code: 50;;; Code:
51 51
diff --git a/lispref/variables.texi b/lispref/variables.texi
index b39c4abb719..43f590503ec 100644
--- a/lispref/variables.texi
+++ b/lispref/variables.texi
@@ -1722,10 +1722,9 @@ stage in the future.
1722@defmac make-obsolete-variable variable new &optional when 1722@defmac make-obsolete-variable variable new &optional when
1723This macro makes the byte-compiler warn that the variable 1723This 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
1725variable's new name; the warning messages say to use @var{new} 1725variable's new name; then the warning messages says to use @var{new}
1726instead of @var{variable}. 1726instead of @var{variable}. If @var{new} is a string, this is the
1727If @var{new} is a string, this is the message and there is no 1727message and there is no replacement variable.
1728replacement variable.
1729 1728
1730If provided, @var{when} should be a string indicating when the 1729If provided, @var{when} should be a string indicating when the
1731variable was first made obsolete---for example, a date or a release 1730variable was first made obsolete---for example, a date or a release