]> code.delx.au - gnu-emacs/commitdiff
(make-glyph-code): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Mon, 28 May 2007 11:57:42 +0000 (11:57 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 28 May 2007 11:57:42 +0000 (11:57 +0000)
lisp/disp-table.el

index b6b2ea12bec41e97458a092485313af12ce6c55d..38f3ed6708af2843218bb77023774662fff70ff9 100644 (file)
@@ -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))