all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dave Goel <deego3@gmail.com>
To: emacs-devel@gnu.org, Dave Goel <deego3@gmail.com>
Subject: Faces: How to clear an attribute while continuing to inherit other attributes?
Date: Wed, 9 Oct 2019 22:42:50 -0400	[thread overview]
Message-ID: <CAOCW0DhgAODpOAapKHHB+fa39HjSSczziPGpUSxJZQqtsnOaNg@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1316 bytes --]

How to unset an inherited face attribute while continuing to inherit other
attributes?

Face 'a inherits from 'b, which sets foreground to yellow. How do I keep 'a
inheriting from 'b, but set the foreground to (nothing), so that actually
rendering 'a goes to the default foreground (white) instead of yellow?

Emacs allows us to set a's foreground to nil (instead of 'unspecified), but
it magically becomes 'unspecified when queried. That's not what I was
aiming for. That is because 'unspecified means actually rendering face 'a
would yield yellow, the color inherited from 'b instead of the default
foreground.

Here's a test:

(progn
  (defface a nil "")
  (defface b nil "")
  (set-face-attribute  'b nil :foreground "yellow")
  (set-face-attribute 'a nil :inherit 'b)
  (set-face-attribute 'a nil :foreground nil)
  ;; let's chase how 'a would render:
  (face-attribute 'a :foreground nil t))

=> "yellow"

We expected either "white", the default foreground.


So, unfortunately, setting a's foreground to nil seems to be equivalent to
setting a's foreground to 'unspecified.

Once I set it to nil, I edebugged (face-attribute), and it calls  '
internal-get-lisp-face-attribute which yields 'unspecified instead of the
expected nil.

(Please cc replies if you can. I tested all this with emacs24.)

Thanks
Dave

[-- Attachment #2: Type: text/html, Size: 2404 bytes --]

             reply	other threads:[~2019-10-10  2:42 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-10  2:42 Dave Goel [this message]
2019-10-10  8:09 ` Faces: How to clear an attribute while continuing to inherit other attributes? Eli Zaretskii
2019-10-10 15:56   ` Dave Goel
2019-10-10 15:59     ` Dave Goel
2019-10-10 17:37     ` Eli Zaretskii
2019-10-10 17:50       ` Dave Goel
2019-10-10 18:07         ` Eli Zaretskii
2019-10-10 18:26           ` Dave Goel
2019-10-10 18:39             ` Eli Zaretskii
     [not found]           ` <47578dbd-71ea-cb02-c337-96fb18af1915@lanl.gov>
     [not found]             ` <83k19cqvdi.fsf@gnu.org>
2019-10-11  0:56               ` Dave Goel
2019-10-11  1:13                 ` Dave Goel
2019-10-11  8:37                   ` Eli Zaretskii
2019-10-11  8:36                 ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAOCW0DhgAODpOAapKHHB+fa39HjSSczziPGpUSxJZQqtsnOaNg@mail.gmail.com \
    --to=deego3@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.