aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2008-04-24 18:10:09 +0000
committerStefan Monnier2008-04-24 18:10:09 +0000
commitca7871a3e581a2915516ef6ae19b67f1760b39ec (patch)
treed6b20124420bd9b447b67abb66afbfbc162bc554 /lisp
parent4f3b3482ee9d5a61e9b7ecd68304a24db0beb579 (diff)
downloademacs-ca7871a3e581a2915516ef6ae19b67f1760b39ec.tar.gz
emacs-ca7871a3e581a2915516ef6ae19b67f1760b39ec.zip
(translation-table-for-input): Mark as obsolete.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el3
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ddb6b68e9e4..4801ef0ca12 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12008-04-24 Stefan Monnier <monnier@iro.umontreal.ca> 12008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * subr.el (translation-table-for-input): Mark as obsolete.
4
3 * isearch.el (isearch-search-string): Avoid string-bytes and aset. 5 * isearch.el (isearch-search-string): Avoid string-bytes and aset.
4 6
5 * international/quail.el (quail-build-decode-map): Avoid string-bytes. 7 * international/quail.el (quail-build-decode-map): Avoid string-bytes.
diff --git a/lisp/subr.el b/lisp/subr.el
index 1f6d5580bff..6629589d5ba 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1041,6 +1041,9 @@ to reread, so it now uses nil to mean `no event', instead of -1."
1041(defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions) 1041(defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
1042(make-obsolete-variable 'x-sent-selection-hooks 1042(make-obsolete-variable 'x-sent-selection-hooks
1043 'x-sent-selection-functions "22.1") 1043 'x-sent-selection-functions "22.1")
1044;; This was introduced in 21.4 for pre-unicode unification and was rendered
1045;; obsolete by the use of Unicode internally in 23.1.
1046(make-obsolete-variable 'translation-table-for-input nil "23.1")
1044 1047
1045(defvaralias 'messages-buffer-max-lines 'message-log-max) 1048(defvaralias 'messages-buffer-max-lines 'message-log-max)
1046 1049