We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Like you already experienced (and fixed) with ement.el, the same thing could happen in prism.el.
There are a few instances of (face-attribute 'default :background) which may be "unspecified-bg", which is a color that cannot be blended.
(face-attribute 'default :background)
This results in error messages at startup when running emacs -nw in some terminals:
emacs -nw
prism-blend: Wrong type argument: number-or-marker-p, nil
The text was updated successfully, but these errors were encountered:
Thanks.
Sorry, something went wrong.
Fix: Call face-attribute specifying INHERIT 'default
4ebd2dd
Fixes <#22>. Reported-by: Bram Schoenmakers <https://github.com/bram85>
alphapapa
No branches or pull requests
Like you already experienced (and fixed) with ement.el, the same thing could happen in prism.el.
There are a few instances of
(face-attribute 'default :background)
which may be "unspecified-bg", which is a color that cannot be blended.This results in error messages at startup when running
emacs -nw
in some terminals:prism-blend: Wrong type argument: number-or-marker-p, nil
The text was updated successfully, but these errors were encountered: