From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: [BUG] No agenda column view summary shown if org-agenda-overriding-header is set Date: Mon, 16 Jan 2017 15:37:27 -0600 Message-ID: <874m0ybsa0.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTEy8-0001mH-1k for emacs-orgmode@gnu.org; Mon, 16 Jan 2017 16:37:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTEy4-00016O-3R for emacs-orgmode@gnu.org; Mon, 16 Jan 2017 16:37:36 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:32935) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTEy3-00014R-Sz for emacs-orgmode@gnu.org; Mon, 16 Jan 2017 16:37:32 -0500 Received: from archdesk (wcnat-96-12.wheaton.edu [209.147.96.12]) by mail.messagingengine.com (Postfix) with ESMTPA id 4E87B24766 for ; Mon, 16 Jan 2017 16:37:28 -0500 (EST) 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: Org Mode I find that column view summaries do not display if org-agenda-overriding-header is set. Steps to replicate: emacs -Q -l ~/minimal.el Where minimal.el contains... --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "~/org-mode/lisp/") (add-to-list 'load-path "~/org-mode/contrib/lisp/") (require 'org) (setq org-agenda-files '("~/test.org")) (setq org-columns-default-format "%40ITEM(Task) %8Effort(Estimate){:} %8CLOCKSUM %20SCHEDULED %20DEADLINE %20TIMESTAMP") (setq org-agenda-custom-commands '(("o" todo "TODO" ((org-agenda-overriding-header "Now"))))) --8<---------------cut here---------------end--------------->8--- ...and ~/test.org contains... --8<---------------cut here---------------start------------->8--- * TODO Buy groceries SCHEDULED: <2017-01-16 Mon> :PROPERTIES: :Effort: 0:10 :END: [2017-01-16 Mon 15:11] * TODO Mow lawn SCHEDULED: <2017-01-16 Mon> [2017-01-16 Mon 15:11] * TODO Clean house SCHEDULED: <2017-01-16 Mon> [2017-01-16 Mon 15:11] --8<---------------cut here---------------end--------------->8--- When calling column view, the overlay summary line with total effort estimates is missing. I ran a git bisect and determined that this bug was introduced with commit 279902ca4da4fe5f0ceff801a3aab51b942b42b7 (Feb. 14, 2016). Versions of org before this correctly display the summary line. Best, Matt