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
commitbd49b21e87f875a33a7aa32455b660d1406bb8fe (patch)
treed283981416754b231e406aea5d3d55678f397f24 /lisp/disp-table.el
parent7a5988c6ee6690e87273a4fb08764aa78bbf0e23 (diff)
downloademacs-bd49b21e87f875a33a7aa32455b660d1406bb8fe.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))