From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Bug: Regression - SPC in agenda does not show drawer details [version 9.1.13 (release_9.1.13-819-geb8743 @ c:/D-Drive/bin/org-mode/lisp/)] Date: Tue, 19 Jun 2018 11:30:37 -0400 Message-ID: <877emupzdu.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVIak-00088a-8k for emacs-orgmode@gnu.org; Tue, 19 Jun 2018 11:30:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVIah-000131-05 for emacs-orgmode@gnu.org; Tue, 19 Jun 2018 11:30:46 -0400 Received: from outbound1b.ore.mailhop.org ([54.200.247.200]:43672) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fVIag-00011J-PF for emacs-orgmode@gnu.org; Tue, 19 Jun 2018 11:30:42 -0400 Received: from localhost.localdomain (gollum.intra.norang.ca [192.168.1.5]) by mail.norang.ca (8.14.4/8.14.4/Debian-4) with ESMTP id w5JFUbvE021640 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 19 Jun 2018 11:30:38 -0400 Received: from localhost.localdomain (gollum [127.0.0.1]) by localhost.localdomain (8.14.3/8.14.3/Debian-9.4) with ESMTP id w5JFUbre016711 for ; Tue, 19 Jun 2018 11:30:37 -0400 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-orgmode@gnu.org Hi, 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)))) -------------------------------------------------------------------------------- Emacs : GNU Emacs 25.1.1 (x86_64-w64-mingw32) of 2016-09-17 Package: Org mode version 9.1.13 (release_9.1.13-819-geb8743 @ c:/D-Drive/bin/org-mode/lisp/)