diff options
| author | Dave Love | 2000-10-27 23:57:33 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-27 23:57:33 +0000 |
| commit | c8e6a854e1d73844f3a1616dfacaf9a87a83437e (patch) | |
| tree | ef0e5b3034e680895cd96b1dcf4fdc35a861d4ff | |
| parent | 75807ea6fa14a686a396ba9a1636179eb2798f4f (diff) | |
| download | emacs-c8e6a854e1d73844f3a1616dfacaf9a87a83437e.tar.gz emacs-c8e6a854e1d73844f3a1616dfacaf9a87a83437e.zip | |
(latin1-char-displayable-p): Don't
use window-system.
| -rw-r--r-- | lisp/international/latin1-disp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/latin1-disp.el b/lisp/international/latin1-disp.el index ee011d21fa5..368bd62a248 100644 --- a/lisp/international/latin1-disp.el +++ b/lisp/international/latin1-disp.el | |||
| @@ -158,7 +158,7 @@ character set: `latin-2', `hebrew' etc." | |||
| 158 | (cond ((< char 256) | 158 | (cond ((< char 256) |
| 159 | ;; Single byte characters are always displayable. | 159 | ;; Single byte characters are always displayable. |
| 160 | t) | 160 | t) |
| 161 | (window-system | 161 | ((display-multi-font-p) |
| 162 | ;; On a window system, a character is displayable if we have | 162 | ;; On a window system, a character is displayable if we have |
| 163 | ;; a font for that character in the default face of the | 163 | ;; a font for that character in the default face of the |
| 164 | ;; currently selected frame. | 164 | ;; currently selected frame. |