From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Spiers Subject: lognotestate for some keywords when set globally not per-buffer? Date: Tue, 1 Jan 2008 14:18:00 +0000 Message-ID: <20080101141800.GU20947@atlantic.linksys.moosehall> Reply-To: Adam Spiers 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 1J9hwT-0004dO-Bw for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 09:18:05 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J9hwS-0004cG-MV for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 09:18:05 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J9hwS-0004c8-IX for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 09:18:04 -0500 Received: from mail.beimborn.com ([70.84.38.100]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1J9hwS-0003vP-Dh for emacs-orgmode@gnu.org; Tue, 01 Jan 2008 09:18:04 -0500 Received: from mail.beimborn.com (localhost.localdomain [127.0.0.1]) by mail.beimborn.com (8.12.11.20060308/8.12.8) with ESMTP id m01EI0at011000 for ; Tue, 1 Jan 2008 08:18:00 -0600 Received: from localhost (localhost [[UNIX: localhost]]) by mail.beimborn.com (8.12.11.20060308/8.12.11/Submit) id m01EI0lP010995 for emacs-orgmode@gnu.org; Tue, 1 Jan 2008 14:18:00 GMT Content-Disposition: inline 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: org-mode mailing list Happy New Year everyone! Hope you had fun celebrating and are ready for another 12 months of org-fuelled efficiency ;-) I just switched from per-buffer settings: #+SEQ_TODO: NEXT(n) STARTED(>) | DONE(d) #+SEQ_TODO: PROJECT(p) | PROJDONE(P) #+SEQ_TODO: WAITING(w@) CHASE(C@) | #+SEQ_TODO: SOMEDAY(s) MAYBE(m) | CANCELLED(c@) to a global setting in org-todo-keywords: ((sequence "NEXT(n)" "STARTED(>)" "|" "DONE(d)") (sequence "PROJECT(p)" "PROJDONE(P)") (sequence "WAITING(w@)" "CHASE(C@)" "|") (sequence "SOMEDAY(s)" "MAYBE(m)" "|" "CANCELLED(c@)")) However it now seems to ignore the @ symbols and never prompts for a note on state change. Is that a bug, or am I configuring it wrong?