diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/subr.el | 3 |
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 @@ | |||
| 1 | 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2008-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 | ||