summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2007-05-28 11:57:42 +0000
committerKenichi Handa <handa@m17n.org>2007-05-28 11:57:42 +0000
commit622a458fe2377000be8c43af9a4b92b7bba261de (patch)
treeb00c0e53c638686a0824f314ee281dbb764facbb /lisp/disp-table.el
parentcbaf8bc63f251394a8e7d7792057d53fe348a190 (diff)
downloademacs-622a458fe2377000be8c43af9a4b92b7bba261de.tar.gz
(make-glyph-code): Fix previous change.
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index b6b2ea12bec..38f3ed6708a 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -191,7 +191,7 @@ X frame."
"Return a glyph code representing char CHAR with face FACE."
;; Due to limitations on Emacs integer values, faces with
;; face id greater that 512 are silently ignored.
- (if (and face (<= (face-id face) #xfff))
+ (if (and face (<= (face-id face) #x1ff))
(logior char (lsh (face-id face) 22))
char))