From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Morgan Subject: Re: Clock-in in agenda makes some headings with links disappear Date: Thu, 15 May 2014 22:59:04 -0400 Message-ID: <87vbt6l98n.fsf@algol.ziiuu.com> References: <87egzw24es.fsf@algol.ziiuu.com> <87zjijtn1q.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54502) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wl8Mc-0003vh-O6 for emacs-orgmode@gnu.org; Thu, 15 May 2014 22:59:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wl8MV-0005nL-4S for emacs-orgmode@gnu.org; Thu, 15 May 2014 22:59:14 -0400 Received: from mail-qg0-f49.google.com ([209.85.192.49]:63499) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wl8MV-0005nD-0y for emacs-orgmode@gnu.org; Thu, 15 May 2014 22:59:07 -0400 Received: by mail-qg0-f49.google.com with SMTP id a108so3214364qge.36 for ; Thu, 15 May 2014 19:59:06 -0700 (PDT) In-Reply-To: <87zjijtn1q.fsf@bzg.ath.cx> (Bastien's message of "Thu, 15 May 2014 11:21:21 +0200") 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: Bastien Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi, Bastien, Here is a recipe for what might be another manifestation of this bug. I'm using the maint branch: Org-mode version 8.2.6 (release_8.2.6-21-g3b9419 @ /src/org-mode/lisp/). Files `setup.el' and `test-case.org' are attached. The directory added to the load path in `setup.el' will probably need to be customized. Steps: 1. Run Emacs: `emacs -Q -l setup.el'. 2. Open the agenda: `M-x org-agenda RET a'. 3. Add a tag filter: `/ TAB foo RET'. 4. Move point to the agenda line containing the TODO item: `C-s TODO RET'. 5. Move point to the end of the line with `C-e'. It does apparently move to the end of the line. However, `C-x =' reports that it is in column 0. I expected it to be in column 108 or 109. 6. Try to move point to the beginning of the line with `C-a'. It appears to move one column to the left. I expected it to move to the left edge of the window. `C-x =' says it is in column 108. 7. Try again to move to the beginning of line with `C-a'. This works. 8. Clock in with `I'. Parts of the line change color but in column 0 `C-u C-x =' does not list any face. I expected the whole line to be highlighted with face `org-agenda-clocking'. 9. Now try to go to the item in the source Org file: `TAB'. I see this error: `Command not allowed in this line'. Best, Thomas --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=setup.el Content-Transfer-Encoding: quoted-printable (add-to-list 'load-path "/src/org-mode/lisp") (require 'org) (require 'org-habit) (setq org-agenda-files '("test-case.org") org-habit-graph-column 80) --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=test-case.org * TODO Buckle my shoe :foo: SCHEDULED: <2014-05-15 Thu +1d> :PROPERTIES: :STYLE: habit :END: * TODO Open the door SCHEDULED: <2014-05-15 Thu +1d> :PROPERTIES: :STYLE: habit :END: --=-=-=--