Mercurial > emacs
changeset 90859:ef753be93cdb
(make-glyph-code): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 28 May 2007 11:57:42 +0000 |
parents | 72f531d048d8 |
children | 848729201b1c |
files | lisp/disp-table.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/disp-table.el Mon May 28 06:52:57 2007 +0000 +++ b/lisp/disp-table.el Mon May 28 11:57:42 2007 +0000 @@ -191,7 +191,7 @@ "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))