From: Kenichi Handa Date: Mon, 28 May 2007 11:57:42 +0000 (+0000) Subject: (make-glyph-code): Fix previous change. X-Git-Tag: emacs-pretest-23.0.90~8295^2~495 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd49b21e87f875a33a7aa32455b660d1406bb8fe;p=emacs.git (make-glyph-code): Fix previous change. --- 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))