From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Navigation problem - 5.08 Date: Fri, 07 Sep 2007 11:08:58 -0400 Message-ID: <87y7fims1h.fsf@gollum.intra.norang.ca> References: <87odgf68ec.fsf@gollum.intra.norang.ca> <0726f1014ee96c5a096ed4e1912e819c@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ITfSb-0000HZ-09 for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 11:09:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ITfSX-0000At-Go for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 11:09:28 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITfSX-0000Aj-Ae for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 11:09:25 -0400 Received: from outbound.mailhop.org ([63.208.196.171]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1ITfSW-0004Gv-VW for emacs-orgmode@gnu.org; Fri, 07 Sep 2007 11:09:25 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org Carsten Dominik writes: > You are the second person to report this problem. > Unfortunately so far I cannot reproduce this problem. > Thanks for providing a detailed test setup. Can you try again, > start your emacs with `-q -l minimal.emacs' and then explain, > key-by-key what you do to get the error? > > Thanks for helping to track this nasty bug down. > > - Carsten > > P.S. I guess turning off flyspell-mode does not help? Here's my simple setup to reproduce the problem ,----[ minimal.emacs ] | (global-font-lock-mode t) | | (add-to-list 'load-path (expand-file-name "~/org-mode")) | (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) | (require 'org-install) | (define-key global-map "\C-ca" 'org-agenda) | (custom-set-variables | '(org-agenda-files (quote ("~/org/test.org")))) | (setq org-use-fast-todo-selection t) `---- ,----[ test.org ] | #+SEQ_TODO: TODO(t) STARTED(s) WAITING(w) APPT(a) | DONE(d) DEFERRED(p) CANCELLED(c) | * one | ** STARTED one-one | SCHEDULED: <2007-09-07 Fri> | ** APPT one-two | SCHEDULED: <2007-09-07 Fri> `---- Start emacs with ,---- | $ emacs22 -q -l minimal.emacs `---- then do the following keystrokes: ^C a a (to get the the agenda view) down arrow (to first task one-one) SPACE (to display the test.org file and task) down arrow (to second task one-two) t (to change TODO keyword) t (select TODO) That's it. The agenda is now wrong. Task one-one was modified instead of one-two. Regards, Bernt.