aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReiner Steib2005-09-08 18:41:13 +0000
committerReiner Steib2005-09-08 18:41:13 +0000
commit6fbb1eb031bdb10bca9d7db948ae1dd470488f6c (patch)
tree5eae22445cb1721a40c014210aa60044fee7391a
parente58af6f198545ddcab01ec29ea8206b2492311f2 (diff)
downloademacs-6fbb1eb031bdb10bca9d7db948ae1dd470488f6c.tar.gz
emacs-6fbb1eb031bdb10bca9d7db948ae1dd470488f6c.zip
(standard-display-european): Don't set
enable-multibyte-characters to nil.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/disp-table.el6
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 @@
12005-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
12005-09-08 David Ponce <david@dponce.com> 62005-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.