From 8dfcdedf44be4af8eb8ede1204d0863ea2b39b46 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 28 Apr 2017 00:23:49 +0200 Subject: [PATCH] org-colview: Fix agenda columns with diary entries MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * lisp/org-colview.el (org-agenda-columns): Do not treat diary entries as headlines. Reported-by: "Éibhear" --- lisp/org-colview.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/org-colview.el b/lisp/org-colview.el index 6a75f70d3..eadf6df51 100644 --- a/lisp/org-colview.el +++ b/lisp/org-colview.el @@ -1531,8 +1531,7 @@ PARAMS is a property list of parameters: (goto-char (point-min)) (let (cache) (while (not (eobp)) - (let ((m (or (org-get-at-bol 'org-hd-marker) - (org-get-at-bol 'org-marker)))) + (let ((m (org-get-at-bol 'org-hd-marker))) (when m (push (cons (line-beginning-position) ;; `org-columns-current-fmt-compiled' is -- 2.11.4.GIT