From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wanrong Lin Subject: Bug: editing priority in column view Date: Thu, 19 Feb 2009 11:43:08 -0500 Message-ID: <499D8C1C.6080908@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LaBzd-0006vM-03 for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 11:43:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LaBzc-0006ue-3y for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 11:43:20 -0500 Received: from [199.232.76.173] (port=42918 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LaBzb-0006uW-Tm for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 11:43:19 -0500 Received: from yw-out-1718.google.com ([74.125.46.157]:52742) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LaBzb-000271-Hj for emacs-orgmode@gnu.org; Thu, 19 Feb 2009 11:43:19 -0500 Received: by yw-out-1718.google.com with SMTP id 6so199227ywa.66 for ; Thu, 19 Feb 2009 08:43:17 -0800 (PST) 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: emacs-orgmode@gnu.org Hi, I have a column view configuration like this: (setq org-columns-default-format (format "%%%iITEM(Task) %%10TODO %%20SCHEDULED %%1PRIORITY(P) %%TAGS(TAGS) %%6Effort(EST){:} %%CLOCKSUM(CLK)" (- fill-column 24))) And I have a org-file "Test.org" with following entry: * TODO Test1 *** TODO Test2 SCHEDULED: <2009-02-19 Thu> If I run "org-agenda-list", and then "org-agenda-columns", and then move the cursor to the "P" field of "Test2" line, press "e", and then press "a" in minibuffer, things are strange now: 1. At first, it worked fine. I could see "Test2" has priority "A" in both the agenda buffer and the "Test.org" buffer. 2. I manually removed the "[#A]" in the "Test2" line of "Test.org" buffer, saved the file and KILLED the "Test.org" buffer 3. In the agenda buffer (still in column view), I pressed "g" (to refresh). I could see "Test.org" was reopened in a buffer. 4. Now I redo the priority editing in the agenda buffer, nothing changed in the agenda buffer, and after examining "Test.org" buffer, I found the priority "A" goes to the parent item "Test1". So I got this in the "Test.org" buffer: * TODO [#A] Test1 *** TODO Test2 SCHEDULED: <2009-02-19 Thu> It seems the order of file opening and column view creation will affect org's behavior. I am using 6.22b, the latest release. Wanrong