diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/disp-table.el | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f15d9812184..b07c4a05773 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * disp-table.el (standard-display-european): Don't set | ||
| 4 | enable-multibyte-characters to nil. | ||
| 5 | |||
| 1 | 2005-09-08 David Ponce <david@dponce.com> | 6 | 2005-09-08 David Ponce <david@dponce.com> |
| 2 | 7 | ||
| 3 | * recentf.el (recentf-show-file-shortcuts-flag): New option. | 8 | * recentf.el (recentf-show-file-shortcuts-flag): New option. |
diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 8e5fa12bad7..778ea092e43 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el | |||
| @@ -220,8 +220,10 @@ for users who call this function in `.emacs'." | |||
| 220 | (unless (or (memq window-system '(x w32))) | 220 | (unless (or (memq window-system '(x w32))) |
| 221 | (and (terminal-coding-system) | 221 | (and (terminal-coding-system) |
| 222 | (set-terminal-coding-system nil)))) | 222 | (set-terminal-coding-system nil)))) |
| 223 | ;; Turn off multibyte chars for more compatibility. | 223 | |
| 224 | (setq-default enable-multibyte-characters nil) | 224 | (display-warning 'i18n |
| 225 | "`standard-display-european' is semi-obsolete" | ||
| 226 | :warning) | ||
| 225 | 227 | ||
| 226 | ;; Switch to Latin-1 language environment | 228 | ;; Switch to Latin-1 language environment |
| 227 | ;; unless some other has been specified. | 229 | ;; unless some other has been specified. |