aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2009-02-14 09:08:08 +0000
committerEli Zaretskii2009-02-14 09:08:08 +0000
commitb46957e2f4dacb404f30586c3675773a23715e16 (patch)
tree74cd10fc109d37cedb75ed3e891a3d115d396e65
parenta6c39c14a291fe76be797a920326410e591152ae (diff)
downloademacs-b46957e2f4dacb404f30586c3675773a23715e16.tar.gz
emacs-b46957e2f4dacb404f30586c3675773a23715e16.zip
(translation-table-for-input): Declare obsolete again.
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/subr.el6
2 files changed, 24 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ab95e57abaf..8ad2ee87a88 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,21 @@
12009-02-14 Eli Zaretskii <eliz@gnu.org>
2
3 * textmodes/ispell.el (ispell-insert-word): Use `with-no-warnings'
4 around forms that refer to translation-table-for-input.
5
6 * isearch.el (isearch-search-string): Use `with-no-warnings'
7 around forms that refer to translation-table-for-input.
8
9 * international/quail.el (quail-input-string-to-events)
10 (quail-store-decode-map-key, quail-char-equal-p): Use
11 `with-no-warnings' around forms that refer to
12 translation-table-for-input.
13
14 * simple.el (quoted-insert, zap-to-char): Use `with-no-warnings'
15 around forms that refer to translation-table-for-input.
16
17 * subr.el (translation-table-for-input): Declare obsolete again.
18
12009-02-14 Glenn Morris <rgm@gnu.org> 192009-02-14 Glenn Morris <rgm@gnu.org>
2 20
3 * mail/rmail.el (rmail): When reverting, swap buffers before setting 21 * mail/rmail.el (rmail): When reverting, swap buffers before setting
diff --git a/lisp/subr.el b/lisp/subr.el
index bf27605b02c..7b169cc280b 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1055,6 +1055,12 @@ to reread, so it now uses nil to mean `no event', instead of -1."
1055(make-obsolete-variable 'x-sent-selection-hooks 1055(make-obsolete-variable 'x-sent-selection-hooks
1056 'x-sent-selection-functions "22.1") 1056 'x-sent-selection-functions "22.1")
1057 1057
1058;; This was introduced in 21.4 for pre-unicode unification. That
1059;; usage was rendered obsolete in 23.1 which uses Unicode internally.
1060;; Other uses are possible, so this variable is not _really_ obsolete,
1061;; but Stefan insists to mark it so.
1062(make-obsolete-variable 'translation-table-for-input nil "23.1")
1063
1058(defvaralias 'messages-buffer-max-lines 'message-log-max) 1064(defvaralias 'messages-buffer-max-lines 'message-log-max)
1059 1065
1060;; These aliases exist in Emacs 19.34, and probably before, but were 1066;; These aliases exist in Emacs 19.34, and probably before, but were