emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Using org-goto loses org-todo-keyword-faces settings
@ 2013-08-21  0:25 Dale
  2013-09-02  5:42 ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Dale @ 2013-08-21  0:25 UTC (permalink / raw)
  To: emacs-orgmode

Hi,

	My thanks to everyone who works on org-mode.  It is a truly indispensable tool.

	I'm not sure if I have a bug or a feature request: I have custom faces set up for my todo keywords (see my file local variable for org-todo-keyword-faces at the bottom of this report).   When I use org-goto (C-c C-j) and then exit goto mode, my custom colors for todo keywords are reset to the defaults.

	Explicitly:

1. Create and save an org file with the following contents:

------8<------Cut here------8<------
* WAITING test1

#+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)

# Local Variables:
# org-todo-keyword-faces: (("WAITING" . "dark orange")
#                          ("HOLD" . "dark orange"))
# End:
------8<------Cut here------8<------

2. Revert the buffer to pick up the in-buffer configuration including file local variables.

3. C-c C-j followed by C-g to exit goto mode.

What I expected: WAITING would still be "dark orange" when I exit goto mode.

What I observed: WAITING reverts to the default red color when I exit goto mode.

(WAITING is also red while I'm in org-goto mode, which is less of a problem for me.  I'd be happy enough if the color was just restored when I'm done with org-goto.)

	I would, of course, be grateful if my org-todo-keyword-faces would still be respected after using goto mode.

	I am using Emacs 24.3.1, apparently, the unofficial Emacs Mac Port (ftp://ftp.math.s.chiba-u.ac.jp/emacs/).  I just confirmed this behavior using org-mode's master branch from git://orgmode.org/org-mode.git as of a few minutes ago.  The output from org-submit-bug-report is below.

Thanks for everything,
Dale


Emacs  : GNU Emacs 24.3.1 (x86_64-apple-darwin12.4.0, Carbon Version 1.6.0 AppKit 1187.39)
 of 2013-06-26
Package: Org-mode version 8.0.7 (release_8.0.7-383-g927f1b @ /Users/dale/.emacs.d/packages/org-mode/)

current state:
==============
(setq
 org-hide-leading-stars t
 org-tab-first-hook '(org-hide-block-toggle-maybe
                      org-src-native-tab-command-maybe
                      org-babel-hide-result-toggle-maybe
                      org-babel-header-arg-expand)
 org-speed-command-hook '(org-speed-command-default-hook
                          org-babel-speed-command-hook)
 org-reverse-note-order t
 org-time-clocksum-format "%d:%02d"
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-agenda-todo-ignore-deadlines 'far
 org-src-window-setup 'other-window
 org-confirm-shell-link-function 'yes-or-no-p
 org-agenda-todo-ignore-scheduled 1
 org-default-notes-file "~/todo.org"
 org-startup-indented t
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-src-mode-hook '(org-src-babel-configure-edit-buffer
                     org-src-mode-configure-edit-buffer)
 org-tags-column -76
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-babel-pre-tangle-hook '(save-buffer)
 org-agenda-dim-blocked-tasks nil
 org-mode-hook '(#[nil "\300\301\302\303\304$\207"
                   [org-add-hook change-major-mode-hook org-show-block-all
                    append local]
                   5]
                 #[nil "\300\301\302\303\304$\207"
                   [org-add-hook change-major-mode-hook
                    org-babel-show-result-all append local]
                   5]
                 org-babel-result-hide-spec org-babel-hide-all-hashes
                 my:org-mode-hook)
 org-outline-path-complete-in-steps nil
 org-agenda-todo-list-sublevels nil
 org-replace-disputed-keys t
 org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
                          org-babel-execute-safely-maybe)
 org-refile-use-outline-path t
 org-enforce-todo-dependencies t
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
                  org-cycle-hide-inline-tasks org-cycle-show-empty-lines
                  org-optimize-window-after-visibility-change)
 org-after-refile-insert-hook '(my:org-maybe-note-refile)
 org-metareturn-hook '(my:org-meta-return-hook)
 org-confirm-elisp-link-function 'yes-or-no-p
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-default-priority 68
 org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
 org-completion-use-ido t
 org-src-preserve-indentation t
 org-clock-in-hook '(my:org-clock-in-set-pending-hook)
 org-agenda-files '("~/todo.org")
 org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
 )

In-buffer configuration:

#+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)

# Local Variables:
# org-todo-keyword-faces: (("WAITING" . "dark orange")
#                          ("HOLD" . "dark orange"))
# End:

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Using org-goto loses org-todo-keyword-faces settings
  2013-08-21  0:25 Using org-goto loses org-todo-keyword-faces settings Dale
@ 2013-09-02  5:42 ` Carsten Dominik
  2013-09-02 15:36   ` Dale
  2013-09-24 22:09   ` Carsten Dominik
  0 siblings, 2 replies; 4+ messages in thread
From: Carsten Dominik @ 2013-09-02  5:42 UTC (permalink / raw)
  To: Dale; +Cc: emacs-orgmode

Hi Dale,

thank you for the report and detailed example.  I have followed your recipe and cannot reproduce the issue.

Regards

- Carsten

On 21.8.2013, at 02:25, Dale <dale@codefu.org> wrote:

> Hi,
> 
> 	My thanks to everyone who works on org-mode.  It is a truly indispensable tool.
> 
> 	I'm not sure if I have a bug or a feature request: I have custom faces set up for my todo keywords (see my file local variable for org-todo-keyword-faces at the bottom of this report).   When I use org-goto (C-c C-j) and then exit goto mode, my custom colors for todo keywords are reset to the defaults.
> 
> 	Explicitly:
> 
> 1. Create and save an org file with the following contents:
> 
> ------8<------Cut here------8<------
> * WAITING test1
> 
> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
> 
> # Local Variables:
> # org-todo-keyword-faces: (("WAITING" . "dark orange")
> #                          ("HOLD" . "dark orange"))
> # End:
> ------8<------Cut here------8<------
> 
> 2. Revert the buffer to pick up the in-buffer configuration including file local variables.
> 
> 3. C-c C-j followed by C-g to exit goto mode.
> 
> What I expected: WAITING would still be "dark orange" when I exit goto mode.
> 
> What I observed: WAITING reverts to the default red color when I exit goto mode.
> 
> (WAITING is also red while I'm in org-goto mode, which is less of a problem for me.  I'd be happy enough if the color was just restored when I'm done with org-goto.)
> 
> 	I would, of course, be grateful if my org-todo-keyword-faces would still be respected after using goto mode.
> 
> 	I am using Emacs 24.3.1, apparently, the unofficial Emacs Mac Port (ftp://ftp.math.s.chiba-u.ac.jp/emacs/).  I just confirmed this behavior using org-mode's master branch from git://orgmode.org/org-mode.git as of a few minutes ago.  The output from org-submit-bug-report is below.
> 
> Thanks for everything,
> Dale
> 
> 
> Emacs  : GNU Emacs 24.3.1 (x86_64-apple-darwin12.4.0, Carbon Version 1.6.0 AppKit 1187.39)
> of 2013-06-26
> Package: Org-mode version 8.0.7 (release_8.0.7-383-g927f1b @ /Users/dale/.emacs.d/packages/org-mode/)
> 
> current state:
> ==============
> (setq
> org-hide-leading-stars t
> org-tab-first-hook '(org-hide-block-toggle-maybe
>                      org-src-native-tab-command-maybe
>                      org-babel-hide-result-toggle-maybe
>                      org-babel-header-arg-expand)
> org-speed-command-hook '(org-speed-command-default-hook
>                          org-babel-speed-command-hook)
> org-reverse-note-order t
> org-time-clocksum-format "%d:%02d"
> org-occur-hook '(org-first-headline-recenter)
> org-metaup-hook '(org-babel-load-in-session-maybe)
> org-agenda-todo-ignore-deadlines 'far
> org-src-window-setup 'other-window
> org-confirm-shell-link-function 'yes-or-no-p
> org-agenda-todo-ignore-scheduled 1
> org-default-notes-file "~/todo.org"
> org-startup-indented t
> org-after-todo-state-change-hook '(org-clock-out-if-current)
> org-src-mode-hook '(org-src-babel-configure-edit-buffer
>                     org-src-mode-configure-edit-buffer)
> org-tags-column -76
> org-agenda-before-write-hook '(org-agenda-add-entry-text)
> org-babel-pre-tangle-hook '(save-buffer)
> org-agenda-dim-blocked-tasks nil
> org-mode-hook '(#[nil "\300\301\302\303\304$\207"
>                   [org-add-hook change-major-mode-hook org-show-block-all
>                    append local]
>                   5]
>                 #[nil "\300\301\302\303\304$\207"
>                   [org-add-hook change-major-mode-hook
>                    org-babel-show-result-all append local]
>                   5]
>                 org-babel-result-hide-spec org-babel-hide-all-hashes
>                 my:org-mode-hook)
> org-outline-path-complete-in-steps nil
> org-agenda-todo-list-sublevels nil
> org-replace-disputed-keys t
> org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
>                          org-babel-execute-safely-maybe)
> org-refile-use-outline-path t
> org-enforce-todo-dependencies t
> org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
>                  org-cycle-hide-inline-tasks org-cycle-show-empty-lines
>                  org-optimize-window-after-visibility-change)
> org-after-refile-insert-hook '(my:org-maybe-note-refile)
> org-metareturn-hook '(my:org-meta-return-hook)
> org-confirm-elisp-link-function 'yes-or-no-p
> org-metadown-hook '(org-babel-pop-to-session-maybe)
> org-default-priority 68
> org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
> org-completion-use-ido t
> org-src-preserve-indentation t
> org-clock-in-hook '(my:org-clock-in-set-pending-hook)
> org-agenda-files '("~/todo.org")
> org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
> )
> 
> In-buffer configuration:
> 
> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
> 
> # Local Variables:
> # org-todo-keyword-faces: (("WAITING" . "dark orange")
> #                          ("HOLD" . "dark orange"))
> # End:
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Using org-goto loses org-todo-keyword-faces settings
  2013-09-02  5:42 ` Carsten Dominik
@ 2013-09-02 15:36   ` Dale
  2013-09-24 22:09   ` Carsten Dominik
  1 sibling, 0 replies; 4+ messages in thread
From: Dale @ 2013-09-02 15:36 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

How surprising!  I just confirmed this again by installing Emacs 24.3
release from MacPorts, running emacs -Q in a terminal Emacs, loading
org-mode from Git, and opening the below org file, making sure to
accept the "unsafe" file local setting of org-todo-keyword-faces.  I
was able to reproduce it: WAITING was orange before org-goto, default
red after org-goto.

Now I wonder what's different about my setup!

Oh well, thanks anyway for looking at this.  For the time being I've
just added after advice to org-goto to run (font-lock-fontify-buffer),
which restores my colors when I exit org-goto.

Regards,
Dale


On Mon, Sep 2, 2013 at 12:42 AM, Carsten Dominik
<carsten.dominik@gmail.com> wrote:
> Hi Dale,
>
> thank you for the report and detailed example.  I have followed your recipe and cannot reproduce the issue.
>
> Regards
>
> - Carsten
>
> On 21.8.2013, at 02:25, Dale <dale@codefu.org> wrote:
>
>> Hi,
>>
>>       My thanks to everyone who works on org-mode.  It is a truly indispensable tool.
>>
>>       I'm not sure if I have a bug or a feature request: I have custom faces set up for my todo keywords (see my file local variable for org-todo-keyword-faces at the bottom of this report).   When I use org-goto (C-c C-j) and then exit goto mode, my custom colors for todo keywords are reset to the defaults.
>>
>>       Explicitly:
>>
>> 1. Create and save an org file with the following contents:
>>
>> ------8<------Cut here------8<------
>> * WAITING test1
>>
>> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
>>
>> # Local Variables:
>> # org-todo-keyword-faces: (("WAITING" . "dark orange")
>> #                          ("HOLD" . "dark orange"))
>> # End:
>> ------8<------Cut here------8<------
>>
>> 2. Revert the buffer to pick up the in-buffer configuration including file local variables.
>>
>> 3. C-c C-j followed by C-g to exit goto mode.
>>
>> What I expected: WAITING would still be "dark orange" when I exit goto mode.
>>
>> What I observed: WAITING reverts to the default red color when I exit goto mode.
>>
>> (WAITING is also red while I'm in org-goto mode, which is less of a problem for me.  I'd be happy enough if the color was just restored when I'm done with org-goto.)
>>
>>       I would, of course, be grateful if my org-todo-keyword-faces would still be respected after using goto mode.
>>
>>       I am using Emacs 24.3.1, apparently, the unofficial Emacs Mac Port (ftp://ftp.math.s.chiba-u.ac.jp/emacs/).  I just confirmed this behavior using org-mode's master branch from git://orgmode.org/org-mode.git as of a few minutes ago.  The output from org-submit-bug-report is below.
>>
>> Thanks for everything,
>> Dale
>>
>>
>> Emacs  : GNU Emacs 24.3.1 (x86_64-apple-darwin12.4.0, Carbon Version 1.6.0 AppKit 1187.39)
>> of 2013-06-26
>> Package: Org-mode version 8.0.7 (release_8.0.7-383-g927f1b @ /Users/dale/.emacs.d/packages/org-mode/)
>>
>> current state:
>> ==============
>> (setq
>> org-hide-leading-stars t
>> org-tab-first-hook '(org-hide-block-toggle-maybe
>>                      org-src-native-tab-command-maybe
>>                      org-babel-hide-result-toggle-maybe
>>                      org-babel-header-arg-expand)
>> org-speed-command-hook '(org-speed-command-default-hook
>>                          org-babel-speed-command-hook)
>> org-reverse-note-order t
>> org-time-clocksum-format "%d:%02d"
>> org-occur-hook '(org-first-headline-recenter)
>> org-metaup-hook '(org-babel-load-in-session-maybe)
>> org-agenda-todo-ignore-deadlines 'far
>> org-src-window-setup 'other-window
>> org-confirm-shell-link-function 'yes-or-no-p
>> org-agenda-todo-ignore-scheduled 1
>> org-default-notes-file "~/todo.org"
>> org-startup-indented t
>> org-after-todo-state-change-hook '(org-clock-out-if-current)
>> org-src-mode-hook '(org-src-babel-configure-edit-buffer
>>                     org-src-mode-configure-edit-buffer)
>> org-tags-column -76
>> org-agenda-before-write-hook '(org-agenda-add-entry-text)
>> org-babel-pre-tangle-hook '(save-buffer)
>> org-agenda-dim-blocked-tasks nil
>> org-mode-hook '(#[nil "\300\301\302\303\304$\207"
>>                   [org-add-hook change-major-mode-hook org-show-block-all
>>                    append local]
>>                   5]
>>                 #[nil "\300\301\302\303\304$\207"
>>                   [org-add-hook change-major-mode-hook
>>                    org-babel-show-result-all append local]
>>                   5]
>>                 org-babel-result-hide-spec org-babel-hide-all-hashes
>>                 my:org-mode-hook)
>> org-outline-path-complete-in-steps nil
>> org-agenda-todo-list-sublevels nil
>> org-replace-disputed-keys t
>> org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
>>                          org-babel-execute-safely-maybe)
>> org-refile-use-outline-path t
>> org-enforce-todo-dependencies t
>> org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
>>                  org-cycle-hide-inline-tasks org-cycle-show-empty-lines
>>                  org-optimize-window-after-visibility-change)
>> org-after-refile-insert-hook '(my:org-maybe-note-refile)
>> org-metareturn-hook '(my:org-meta-return-hook)
>> org-confirm-elisp-link-function 'yes-or-no-p
>> org-metadown-hook '(org-babel-pop-to-session-maybe)
>> org-default-priority 68
>> org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
>> org-completion-use-ido t
>> org-src-preserve-indentation t
>> org-clock-in-hook '(my:org-clock-in-set-pending-hook)
>> org-agenda-files '("~/todo.org")
>> org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
>> )
>>
>> In-buffer configuration:
>>
>> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
>>
>> # Local Variables:
>> # org-todo-keyword-faces: (("WAITING" . "dark orange")
>> #                          ("HOLD" . "dark orange"))
>> # End:
>>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Using org-goto loses org-todo-keyword-faces settings
  2013-09-02  5:42 ` Carsten Dominik
  2013-09-02 15:36   ` Dale
@ 2013-09-24 22:09   ` Carsten Dominik
  1 sibling, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2013-09-24 22:09 UTC (permalink / raw)
  To: Dale; +Cc: emacs-orgmode

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

Hi Dale, I tried it again today, and I do not see the problem you are describing.
I am closing this bug report until others chime in with supporting information.

- carsten

On 2.9.2013, at 07:42, Carsten Dominik <carsten.dominik@gmail.com> wrote:

> Hi Dale,
> 
> thank you for the report and detailed example.  I have followed your recipe and cannot reproduce the issue.
> 
> Regards
> 
> - Carsten
> 
> On 21.8.2013, at 02:25, Dale <dale@codefu.org> wrote:
> 
>> Hi,
>> 
>> 	My thanks to everyone who works on org-mode.  It is a truly indispensable tool.
>> 
>> 	I'm not sure if I have a bug or a feature request: I have custom faces set up for my todo keywords (see my file local variable for org-todo-keyword-faces at the bottom of this report).   When I use org-goto (C-c C-j) and then exit goto mode, my custom colors for todo keywords are reset to the defaults.
>> 
>> 	Explicitly:
>> 
>> 1. Create and save an org file with the following contents:
>> 
>> ------8<------Cut here------8<------
>> * WAITING test1
>> 
>> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
>> 
>> # Local Variables:
>> # org-todo-keyword-faces: (("WAITING" . "dark orange")
>> #                          ("HOLD" . "dark orange"))
>> # End:
>> ------8<------Cut here------8<------
>> 
>> 2. Revert the buffer to pick up the in-buffer configuration including file local variables.
>> 
>> 3. C-c C-j followed by C-g to exit goto mode.
>> 
>> What I expected: WAITING would still be "dark orange" when I exit goto mode.
>> 
>> What I observed: WAITING reverts to the default red color when I exit goto mode.
>> 
>> (WAITING is also red while I'm in org-goto mode, which is less of a problem for me.  I'd be happy enough if the color was just restored when I'm done with org-goto.)
>> 
>> 	I would, of course, be grateful if my org-todo-keyword-faces would still be respected after using goto mode.
>> 
>> 	I am using Emacs 24.3.1, apparently, the unofficial Emacs Mac Port (ftp://ftp.math.s.chiba-u.ac.jp/emacs/).  I just confirmed this behavior using org-mode's master branch from git://orgmode.org/org-mode.git as of a few minutes ago.  The output from org-submit-bug-report is below.
>> 
>> Thanks for everything,
>> Dale
>> 
>> 
>> Emacs  : GNU Emacs 24.3.1 (x86_64-apple-darwin12.4.0, Carbon Version 1.6.0 AppKit 1187.39)
>> of 2013-06-26
>> Package: Org-mode version 8.0.7 (release_8.0.7-383-g927f1b @ /Users/dale/.emacs.d/packages/org-mode/)
>> 
>> current state:
>> ==============
>> (setq
>> org-hide-leading-stars t
>> org-tab-first-hook '(org-hide-block-toggle-maybe
>>                     org-src-native-tab-command-maybe
>>                     org-babel-hide-result-toggle-maybe
>>                     org-babel-header-arg-expand)
>> org-speed-command-hook '(org-speed-command-default-hook
>>                         org-babel-speed-command-hook)
>> org-reverse-note-order t
>> org-time-clocksum-format "%d:%02d"
>> org-occur-hook '(org-first-headline-recenter)
>> org-metaup-hook '(org-babel-load-in-session-maybe)
>> org-agenda-todo-ignore-deadlines 'far
>> org-src-window-setup 'other-window
>> org-confirm-shell-link-function 'yes-or-no-p
>> org-agenda-todo-ignore-scheduled 1
>> org-default-notes-file "~/todo.org"
>> org-startup-indented t
>> org-after-todo-state-change-hook '(org-clock-out-if-current)
>> org-src-mode-hook '(org-src-babel-configure-edit-buffer
>>                    org-src-mode-configure-edit-buffer)
>> org-tags-column -76
>> org-agenda-before-write-hook '(org-agenda-add-entry-text)
>> org-babel-pre-tangle-hook '(save-buffer)
>> org-agenda-dim-blocked-tasks nil
>> org-mode-hook '(#[nil "\300\301\302\303\304$\207"
>>                  [org-add-hook change-major-mode-hook org-show-block-all
>>                   append local]
>>                  5]
>>                #[nil "\300\301\302\303\304$\207"
>>                  [org-add-hook change-major-mode-hook
>>                   org-babel-show-result-all append local]
>>                  5]
>>                org-babel-result-hide-spec org-babel-hide-all-hashes
>>                my:org-mode-hook)
>> org-outline-path-complete-in-steps nil
>> org-agenda-todo-list-sublevels nil
>> org-replace-disputed-keys t
>> org-ctrl-c-ctrl-c-hook '(org-babel-hash-at-point
>>                         org-babel-execute-safely-maybe)
>> org-refile-use-outline-path t
>> org-enforce-todo-dependencies t
>> org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
>>                 org-cycle-hide-inline-tasks org-cycle-show-empty-lines
>>                 org-optimize-window-after-visibility-change)
>> org-after-refile-insert-hook '(my:org-maybe-note-refile)
>> org-metareturn-hook '(my:org-meta-return-hook)
>> org-confirm-elisp-link-function 'yes-or-no-p
>> org-metadown-hook '(org-babel-pop-to-session-maybe)
>> org-default-priority 68
>> org-blocker-hook '(org-block-todo-from-children-or-siblings-or-parent)
>> org-completion-use-ido t
>> org-src-preserve-indentation t
>> org-clock-in-hook '(my:org-clock-in-set-pending-hook)
>> org-agenda-files '("~/todo.org")
>> org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
>> )
>> 
>> In-buffer configuration:
>> 
>> #+TODO: NEW(n) PENDING(p!) WAITING(w!) HOLD(h!) | DONE(d!) CANCELLED(c!)
>> 
>> # Local Variables:
>> # org-todo-keyword-faces: (("WAITING" . "dark orange")
>> #                          ("HOLD" . "dark orange"))
>> # End:
>> 
> 


[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-24 22:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-21  0:25 Using org-goto loses org-todo-keyword-faces settings Dale
2013-09-02  5:42 ` Carsten Dominik
2013-09-02 15:36   ` Dale
2013-09-24 22:09   ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).