aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-08 09:57:37 +0000
committerRichard M. Stallman1997-09-08 09:57:37 +0000
commit35ae8ec829fb7465061ad51bcd9420faf4ddd8d4 (patch)
treeedb07376defd3ac162fa416be8337df39ad3110c
parentab85f1b1241a7b271d5fc17a0cac5c6d000e0c86 (diff)
downloademacs-35ae8ec829fb7465061ad51bcd9420faf4ddd8d4.tar.gz
emacs-35ae8ec829fb7465061ad51bcd9420faf4ddd8d4.zip
(command-line): Pass charset to standard-display-european.
-rw-r--r--lisp/startup.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index cd9700e0d61..72ab648f318 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -458,11 +458,8 @@ from being initialized."
458 (setq charset (concat "latin-" which)) 458 (setq charset (concat "latin-" which))
459 ;; Set up for this character set in multibyte mode. 459 ;; Set up for this character set in multibyte mode.
460 (if (string-match "latin-[12345]" charset) 460 (if (string-match "latin-[12345]" charset)
461 (set-language-environment charset))) 461 (set-language-environment charset))
462 ;; These two lines are ok for any Latin-N character set, 462 (standard-display-european t charset))))
463 ;; as long as the terminal displays it.
464 (require 'disp-table)
465 (standard-display-european t t)))
466 463
467 ;;! This has been commented out; I currently find the behavior when 464 ;;! This has been commented out; I currently find the behavior when
468 ;;! split-window-keep-point is nil disturbing, but if I can get used 465 ;;! split-window-keep-point is nil disturbing, but if I can get used