Add support for 'reset value of face attribute#61
Open
binarin wants to merge 1 commit into
Open
Conversation
This is from the elisp manual from the fresh git emacs: A face attribute can also have the value ‘reset’. This special value stands for the value of the corresponding attribute of the ‘default’ face. Also it looks like this was the problem for the internal htmlfontify-buffer: https://lists.gnu.org/archive/html/bug-gnu-emacs/2026-05/msg00923.html
Author
|
And this is a temporary workaround that can be added to a emacs config: (advice-add 'htmlize-face-color-internal :around
(defun b/htmlize-face-reset-workaround (orig-fun face bg)
(pcase (funcall orig-fun face bg)
('reset (funcall orig-fun 'default bg))
(val)))) |
jcs090218
approved these changes
May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Newer emacs introduces new possible value for the face attributes -
'reset.This is from the elisp manual from the fresh git emacs:
Also it looks like this is yet unhandled problem for the
htmlfontify-bufferincluded in emacs itself: https://lists.gnu.org/archive/html/bug-gnu-emacs/2026-05/msg00923.html