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: Sun, 25 May 2014 14:52:30 +0200 Message-ID: <87mwe6f2b5.fsf@azha.ziiuu.com> References: <87egzw24es.fsf@algol.ziiuu.com> <87zjijtn1q.fsf@bzg.ath.cx> <87vbt6l98n.fsf@algol.ziiuu.com> <87ioozkuv8.fsf@bzg.ath.cx> <87egziryw3.fsf@azha.ziiuu.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WodEy-0002Wy-63 for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WodEo-00010u-U1 for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:48 -0400 Received: from mail-qc0-f180.google.com ([209.85.216.180]:50349) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WodEo-00010T-Q7 for emacs-orgmode@gnu.org; Sun, 25 May 2014 14:33:38 -0400 Received: by mail-qc0-f180.google.com with SMTP id i17so11206289qcy.11 for ; Sun, 25 May 2014 11:33:37 -0700 (PDT) In-Reply-To: <87egziryw3.fsf@azha.ziiuu.com> (Thomas Morgan's message of "Sun, 25 May 2014 11:27:56 +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 the bug where scheduling hangs. 1. Change the load path entry in `setup.el'. 2. Start Emacs with `emacs -Q -l setup.el'. 3. Open a TODO list with `M-x org-todo-list'. 4. Filter out tag with `C-u / TAB foo RET'. 5. Move point to first item with `C-s todo RET'. 6. Schedule it for today with `C-c C-s RET'. An indication that it was scheduled appears in the echo area: ,---- | Scheduled to <2014-05-25 Sun> `---- But the calendar window remains until you press `C-g'. Best, Thomas --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=test-case.org * TODO Buckle my shoe * TODO Open the door :foo: * TODO Pick up sticks --=-=-= 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) (setq org-agenda-files '("test-case.org")) (org-todo-list) --=-=-=--