From mboxrd@z Thu Jan 1 00:00:00 1970 From: stardiviner Subject: Can't set full face attributes in variable org-todo-keyword-faces Date: Mon, 18 Dec 2017 10:14:05 +0800 Message-ID: <62c5ecaf-a7e1-d841-168f-7390da5795b1@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQkwY-0004vU-T5 for emacs-orgmode@gnu.org; Sun, 17 Dec 2017 21:14:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQkwU-00072q-R3 for emacs-orgmode@gnu.org; Sun, 17 Dec 2017 21:14:14 -0500 Received: from mail-pl0-x22a.google.com ([2607:f8b0:400e:c01::22a]:35671) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eQkwU-00071x-LZ for emacs-orgmode@gnu.org; Sun, 17 Dec 2017 21:14:10 -0500 Received: by mail-pl0-x22a.google.com with SMTP id b96so3940286pli.2 for ; Sun, 17 Dec 2017 18:14:10 -0800 (PST) Received: from [0.0.0.0] ([119.28.89.243]) by smtp.gmail.com with ESMTPSA id m10sm6021556pgs.4.2017.12.17.18.14.08 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 17 Dec 2017 18:14:09 -0800 (PST) Content-Language: en-US List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-org-mode I have following settings: ```elisp (setq org-todo-keyword-faces       '(;;; todo keywords         ("TODO" :foreground "orange"          :box '(:color "dim gray" :line-width -1))         ("URGENT" :foreground "red"          :box '(:color "dim gray" :line-width -1)))) ``` But I check out it's docstring, found variable `org-faces-easy-properties`. It has value: ```elisp (setq org-faces-easy-properties '((todo . :foreground) (tag . :foreground) (priority . :foreground))) ``` So my `:box` attribute does not work. I hope I can specify full face attributes in `org-todo-keyword-faces`. I guess this might need to modify source code.