help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Boldifing all faces?


From: David Engster
Subject: Re: Boldifing all faces?
Date: Thu, 26 Mar 2009 12:07:48 +0100
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.91 (gnu/linux)

Elena <egarrulo@gmail.com> writes:
> On Mar 20, 6:53 pm, Elena <egarr...@gmail.com> wrote:
>> Hi,
>>
>> can you boldify (make bold) all faces, without having to customize
>> each one?
>
> I've found out that setting the default font as bold works with some
> fonts (e.g. DejaVu Sans Mono), it doesn't with others (e.g. Lucida
> Console). Therefore I'll have to restrict my choices within fonts
> which work.

Maybe this little snippet works for you?

(mapc
 (lambda (face)
   (set-face-attribute face nil :weight 'bold))
 (face-list))

-David





reply via email to

[Prev in Thread] Current Thread [Next in Thread]