mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 05:17:35 +00:00
(make-glyph-code): Fix previous change.
This commit is contained in:
parent
7a5988c6ee
commit
bd49b21e87
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue