Mercurial > emacs
changeset 66274:8e3aeb72b4d2
(standard-display-g1, standard-display-graphic): Refuse to use string
glyphs also on Mac.
(standard-display-european): Don't set terminal coding system also
on Mac.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Fri, 21 Oct 2005 08:26:54 +0000 |
parents | 03fbd1b84b2f |
children | 737f713709af |
files | lisp/disp-table.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/disp-table.el Fri Oct 21 08:26:37 2005 +0000 +++ b/lisp/disp-table.el Fri Oct 21 08:26:54 2005 +0000 @@ -145,7 +145,7 @@ "Display character C as character SC in the g1 character set. This function assumes that your terminal uses the SO/SI characters; it is meaningless for an X frame." - (if (memq window-system '(x w32)) + (if (memq window-system '(x w32 mac)) (error "Cannot use string glyphs in a windowing system")) (or standard-display-table (setq standard-display-table (make-display-table))) @@ -157,7 +157,7 @@ "Display character C as character GC in graphics character set. This function assumes VT100-compatible escapes; it is meaningless for an X frame." - (if (memq window-system '(x w32)) + (if (memq window-system '(x w32 mac)) (error "Cannot use string glyphs in a windowing system")) (or standard-display-table (setq standard-display-table (make-display-table))) @@ -217,7 +217,7 @@ (equal (aref standard-display-table 161) [161]))) (progn (standard-display-default 160 255) - (unless (or (memq window-system '(x w32))) + (unless (or (memq window-system '(x w32 mac))) (and (terminal-coding-system) (set-terminal-coding-system nil))))