Hello,

Bernt Hansen <be...@norang.ca> writes:

> The current master branch has a regression from maint when displaying
> task details from the agenda using the SPC key.
>
> I keep my task change details in drawers so when I change a task from
> TODO to WAITING I record the details of why it is waiting in the
> drawer.  In the maint branch I can hit SPC in the agenda  on a WAITING
> task and see the details of what it is waiting for in the maint branch.
> This no longer works in master.
>
> ECM follows.
>
> Thanks for org-mode!
>
> Regards,
> Bernt
>
> ECM: 
>
> --- test.org 
> -------------------------------------------------------------------
>
> #+FILETAGS: TEST
> #+STARTUP: content
>
>
> Regression - SPC in agenda does not show details in drawers
>
> *Keys To Reproduce*
>
> 1) Add current file to org-agenda files
>    C-c [
>
> 2) Show agenda
>    C-c a t
>
> 3) Move to WAITING task
>    C-4 C-n
>
> 4) Show task
>    SPC
>
> Results in maint branch
>
> #+begin_example
> ,* WAITING Task two                                                  :WAITING:
>   :LOGBOOK:
>   - State "WAITING"    from "TODO"       [2018-06-19 Tue 10:47] \\
>     for something
>   :END:
> ,* TODO Task three
> #+end_example
>
>
> Results in master branch
>
> #+begin_example
>   ,* WAITING Task two                                                  
> :WAITING:
>     :LOGBOOK:...
>   ,* TODO Task three
>
> #+end_example
>
> * TODO Task one
> * WAITING Task two                                                  :WAITING:
>   :LOGBOOK:
>   - State "WAITING"    from "TODO"       [2018-06-19 Tue 10:47] \\
>     for something
>   :END:
> * TODO Task three
>
> --- test.el 
> --------------------------------------------------------------------
> (setq org-log-into-drawer t)
>
> (setq org-todo-keywords
>       (quote ((sequence "TODO(t/!)" "NEXT(n/!)" "|" "DONE(d/!)")
>             (sequence "WAITING(w@/!)" "HOLD(h@/!)"  "|" "CANCELLED(c@/!)"))))
>
> (setq org-todo-state-tags-triggers
>       (quote (("CANCELLED" ("CANCELLED" . t) ("WAITING") ("HOLD"))
>             ("WAITING" ("WAITING" . t))
>             ("HOLD" ("WAITING") ("HOLD" . t))
>             (done ("WAITING") ("HOLD"))
>             ("TODO" ("WAITING") ("CANCELLED") ("HOLD"))
>             ("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
>             ("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
>
> (setq org-todo-keyword-faces
>       (quote (("TODO" :foreground "red" :weight bold)
>             ("NEXT" :foreground "blue" :weight bold)
>             ("DONE" :foreground "forest green" :weight bold)
>             ("WAITING" :foreground "orange" :weight bold)
>             ("HOLD" :foreground "magenta" :weight bold)
>             ("CANCELLED" :foreground "forest green" :weight bold))))
>
>
> --------------------------------------------------------------------------------

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou

Reply via email to