emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/disp-table.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/disp-table.el
Date: Sun, 02 Dec 2001 02:51:49 -0500

Index: emacs/lisp/disp-table.el
diff -c emacs/lisp/disp-table.el:1.47 emacs/lisp/disp-table.el:1.48
*** emacs/lisp/disp-table.el:1.47       Sun Jul 15 12:15:34 2001
--- emacs/lisp/disp-table.el    Sun Dec  2 02:51:49 2001
***************
*** 206,232 ****
               (equal (aref standard-display-table 161) [161])))
        (progn
        (standard-display-default 160 255)
!       (unless (or (memq window-system '(x w32))
!                   (interactive-p))
          (and (terminal-coding-system)
               (set-terminal-coding-system nil))))
!     ;; If the user does this explicitly from Lisp (as in .emacs),
!     ;; turn off multibyte chars for more compatibility.
!     (unless (interactive-p)
!       (setq-default enable-multibyte-characters nil)
!       (mapcar (lambda (buffer)
!               (with-current-buffer buffer
!                 (if enable-multibyte-characters
!                     (set-buffer-multibyte nil))))
!             (buffer-list)))
!     ;; If the user does this explicitly,
!     ;; switch to Latin-1 language environment
      ;; unless some other has been specified.
!     (unless (interactive-p)
!       (if (equal current-language-environment "English")
!         (set-language-environment "latin-1")))
!     (unless (or noninteractive (memq window-system '(x w32))
!               (interactive-p))
        ;; Send those codes literally to a character-based terminal.
        ;; If we are using single-byte characters,
        ;; it doesn't matter which coding system we use.
--- 206,222 ----
               (equal (aref standard-display-table 161) [161])))
        (progn
        (standard-display-default 160 255)
!       (unless (or (memq window-system '(x w32)))
          (and (terminal-coding-system)
               (set-terminal-coding-system nil))))
!     ;; Turn off multibyte chars for more compatibility.
!     (setq-default enable-multibyte-characters nil)
! 
!     ;; Switch to Latin-1 language environment
      ;; unless some other has been specified.
!     (if (equal current-language-environment "English")
!       (set-language-environment "latin-1"))
!     (unless (or noninteractive (memq window-system '(x w32)))
        ;; Send those codes literally to a character-based terminal.
        ;; If we are using single-byte characters,
        ;; it doesn't matter which coding system we use.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]