emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] faces for keywords


From: Dmitri Minaev
Subject: [Orgmode] faces for keywords
Date: Thu, 7 Feb 2008 13:07:25 +0400

When I followed the examples given in the manual for setting
org-todo-keyword-faces, I could change the font color but not its
weight.  I had to defface a new face and use it in the
org-todo-keyword-faces to get the bold font.

What I did first was:
(setq org-todo-keyword-faces
      '(("WAITING"  . (:foreground "blue" :weight bold :bold t))))

The same face definition syntax used with defface worked well:
(defface org-waiting-face '((t (:foreground "blue" :weight bold :bold
t))) "Face for WAITING todo items.")
(setq org-todo-keyword-faces
      '(("WAITING"  . org-waiting-face)))

GNU Emacs 23.0.0.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)

What did I do wrong?

-- 
With best regards,
Dmitri Minaev

Russian history blog: http://minaev.blogspot.com




reply via email to

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