From mboxrd@z Thu Jan 1 00:00:00 1970 From: Josiah Schwab Subject: Re: org habit consistency graph Date: Tue, 03 Dec 2013 12:40:52 -0800 Message-ID: <87y541llbf.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnwmI-0005lY-LO for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 15:41:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VnwmB-0001ib-Uc for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 15:41:06 -0500 Received: from mail-pb0-x22a.google.com ([2607:f8b0:400e:c01::22a]:54018) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VnwmB-0001i2-MV for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 15:40:59 -0500 Received: by mail-pb0-f42.google.com with SMTP id uo5so22046266pbc.1 for ; Tue, 03 Dec 2013 12:40:55 -0800 (PST) In-reply-to: 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Chris Henderson Cc: Alan Schmitt , emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi Chris, > Anyone else help me identify the issue? Thanks. Have you tried with a minimal org configuration? I tried and cannot reproduce the problem. That suggests something else in your org configuration as the culprit. I have attached your example TODO (habit) as henderson-habit.org. Update the paths as appropriate in the attached minimal-org.el, then star emacs with it and see what happens for you. emacs -Q -l minimal-org.el After issuing M-x org-agenda a, I get an agenda with a consistency graph. Best, Josiah --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=henderson-habit.org * TODO exercise SCHEDULED: <2013-12-03 Tue .+1d> - State "DONE" from "TODO" [2013-12-02 Mon 17:31] - State "DONE" from "TODO" [2013-12-02 Mon 17:30] :PROPERTIES: :LAST_REPEAT: [2013-12-02 Mon 17:31] :STYLE: habit :END: --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=minimal-org.el Content-Transfer-Encoding: quoted-printable ;;; Minimal setup to load latest `org-mode' ;; activate debugging (setq debug-on-error t debug-on-signal nil debug-on-quit nil) ;; add latest org-mode to load path (add-to-list 'load-path (expand-file-name "/path/to/org-mode/lisp")) (add-to-list 'load-path (expand-file-name "/path/to/org-mode/contrib/lisp" = t)) ;; attempt to reproduce habit issue (setq org-modules '(org-habit)) (setq org-agenda-files '("/path/to/henderson-habit.org")) --=-=-=--