aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-12-02 07:51:49 +0000
committerStefan Monnier2001-12-02 07:51:49 +0000
commitfbd798e27f006798af26df482c7a5f4b6ae39387 (patch)
tree08cbb33ed7525d86562c3b01fed90262ffafa48e
parent6d57b1a37af800e68b4a3ea41236915938b623d8 (diff)
downloademacs-fbd798e27f006798af26df482c7a5f4b6ae39387.tar.gz
emacs-fbd798e27f006798af26df482c7a5f4b6ae39387.zip
(standard-display-european):
Simplify since the function is not interactive any more. Don't set the existing buffers to unibyte.
-rw-r--r--lisp/disp-table.el26
1 files changed, 8 insertions, 18 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 452d99285c9..6a8fe08ca20 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -206,27 +206,17 @@ for users who call this function in `.emacs'."
206 (equal (aref standard-display-table 161) [161]))) 206 (equal (aref standard-display-table 161) [161])))
207 (progn 207 (progn
208 (standard-display-default 160 255) 208 (standard-display-default 160 255)
209 (unless (or (memq window-system '(x w32)) 209 (unless (or (memq window-system '(x w32)))
210 (interactive-p))
211 (and (terminal-coding-system) 210 (and (terminal-coding-system)
212 (set-terminal-coding-system nil)))) 211 (set-terminal-coding-system nil))))
213 ;; If the user does this explicitly from Lisp (as in .emacs), 212 ;; Turn off multibyte chars for more compatibility.
214 ;; turn off multibyte chars for more compatibility. 213 (setq-default enable-multibyte-characters nil)
215 (unless (interactive-p) 214
216 (setq-default enable-multibyte-characters nil) 215 ;; Switch to Latin-1 language environment
217 (mapcar (lambda (buffer)
218 (with-current-buffer buffer
219 (if enable-multibyte-characters
220 (set-buffer-multibyte nil))))
221 (buffer-list)))
222 ;; If the user does this explicitly,
223 ;; switch to Latin-1 language environment
224 ;; unless some other has been specified. 216 ;; unless some other has been specified.
225 (unless (interactive-p) 217 (if (equal current-language-environment "English")
226 (if (equal current-language-environment "English") 218 (set-language-environment "latin-1"))
227 (set-language-environment "latin-1"))) 219 (unless (or noninteractive (memq window-system '(x w32)))
228 (unless (or noninteractive (memq window-system '(x w32))
229 (interactive-p))
230 ;; Send those codes literally to a character-based terminal. 220 ;; Send those codes literally to a character-based terminal.
231 ;; If we are using single-byte characters, 221 ;; If we are using single-byte characters,
232 ;; it doesn't matter which coding system we use. 222 ;; it doesn't matter which coding system we use.