fix a crash in when printing decreased intensity unicode right quote using bit-mapped fonts
This commit is contained in:
parent
455fea1627
commit
05823bf282
1 changed files with 1 additions and 1 deletions
|
@ -3901,7 +3901,7 @@ xtermFullString16(XTermDraw * params, unsigned flags, GC gc,
|
|||
(ch > NARROW_ICHAR) ||
|
||||
#endif
|
||||
xtermMissingChar(ch,
|
||||
(((xf >= fn) && (xf - fn) <= fMAX)
|
||||
(((xf >= fn) && (xf - fn) < fMAX)
|
||||
? XTermFontsRef(screen->fnts,
|
||||
(VTFontEnum) (xf - fn))
|
||||
: fp))) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue