You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the emacs source code within the file xfaces.c around the error Invalid face box, and on the documentation of :box, the attribute :style does not accept an unspecified value. That value causes the enclosing loop to terminate prematurely, thereby setting valid_p to false, causing the error.
The diff that fixes the issue for xterm-256color is attached. It is based on commit 4a09c59. The attributes affected belong to the class monokai-256-class.
Although I have not tested with the X11 GUI emacs, the monokai-class, which seems to be applicable to GUI, is likely to be affected too; that class also contains instances of :style attributes with unspecified value that may need fixing.
With TERM=xterm, the error does not occur.
Edit: For some reason, the text file containing the diff does not attach. The elements that are affected by this issue are mode-line, mode-line-inactive and header-line.
Thank you.
The text was updated successfully, but these errors were encountered:
Based on the emacs source code within the file
xfaces.c
around the errorInvalid face box
, and on the documentation of:box
, the attribute:style
does not accept anunspecified
value. That value causes the enclosing loop to terminate prematurely, thereby settingvalid_p
to false, causing the error.The diff that fixes the issue for xterm-256color is attached. It is based on commit 4a09c59. The attributes affected belong to the class
monokai-256-class
.Although I have not tested with the X11 GUI emacs, the
monokai-class
, which seems to be applicable to GUI, is likely to be affected too; that class also contains instances of:style
attributes withunspecified
value that may need fixing.With
TERM=xterm
, the error does not occur.Edit: For some reason, the text file containing the diff does not attach. The elements that are affected by this issue are
mode-line
,mode-line-inactive
andheader-line
.Thank you.
The text was updated successfully, but these errors were encountered: