[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bold by moving pixels problem
From: |
Robert J. Chassell |
Subject: |
Re: Bold by moving pixels problem |
Date: |
Tue, 17 Dec 2002 16:38:57 +0000 (UTC) |
Many thanks!
The second version of the patch that implements the `final face
realization filtering' function works fine. I can finally read the
`m' in my *mail* buffer mode line!
I put the following in my .emacs file
(defun unboldify-lface (lface)
(aset lface 4 'normal))
(setq realize-face-filter 'unboldify-lface)
(clear-face-cache)
and all is well, as far as I have tested it.
My only issue is semantic: I continue to have `bold' faces, but I
set `bold' to be a color, not a weight. What it seems you are doing
is not so much `unboldifying' the face as removing a
:weight bold
attribute. Should we not call the defun `face-normal-weight'?
(defun face-normal-weight (lface)
(aset lface 4 'normal))
(setq realize-face-filter 'face-normal-weight)
(clear-face-cache)
--
Robert J. Chassell Rattlesnake Enterprises
http://www.rattlesnake.com GnuPG Key ID: 004B4AC8
http://www.teak.cc address@hidden
- Re: signal handling bogosities, (continued)
- Re: signal handling bogosities, Alex Schroeder, 2002/12/20
- Re: signal handling bogosities, Eli Zaretskii, 2002/12/20
- Re: signal handling bogosities, Miles Bader, 2002/12/20
- Re: signal handling bogosities, Richard Stallman, 2002/12/21
- Re: signal handling bogosities, Alex Schroeder, 2002/12/21
- Re: signal handling bogosities, Richard Stallman, 2002/12/23
- Re: signal handling bogosities, Miles Bader, 2002/12/21
- Re: signal handling bogosities, Miles Bader, 2002/12/21
- Re: signal handling bogosities, Richard Stallman, 2002/12/23
Re: Bold by moving pixels problem, Kim F. Storm, 2002/12/17
Re: Bold by moving pixels problem,
Robert J. Chassell <=