From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rauchenwald Subject: Small issues.. Date: Sat, 06 Sep 2008 18:48:54 +0200 Message-ID: <87hc8txls9.fsf@sec.modprobe.de> 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 1Kc141-0000B7-QE for emacs-orgmode@gnu.org; Sat, 06 Sep 2008 12:55:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kc13z-00005r-7d for emacs-orgmode@gnu.org; Sat, 06 Sep 2008 12:55:09 -0400 Received: from [199.232.76.173] (port=33011 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kc13z-00005d-3f for emacs-orgmode@gnu.org; Sat, 06 Sep 2008 12:55:07 -0400 Received: from main.gmane.org ([80.91.229.2]:59059 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kc13z-0004Gx-AA for emacs-orgmode@gnu.org; Sat, 06 Sep 2008 12:55:07 -0400 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1Kc13u-0001CH-GA for emacs-orgmode@gnu.org; Sat, 06 Sep 2008 16:55:02 +0000 Received: from 77.117.117.227 ([77.117.117.227]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 06 Sep 2008 16:55:02 +0000 Received: from its.sec by 77.117.117.227 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 06 Sep 2008 16:55:02 +0000 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 found two small issues with org-mode from git. First one is a typo of org-scheduled. The second one is that org turns on debug-on-error, not sure if I missed where it is turned off again. Tom diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 5c54a8d..3904876 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3521,7 +3521,7 @@ FRACTION is what fraction of the head-warning time has passed." (cond (pastschedp 'org-scheduled-previously) (todayp 'org-scheduled-today) - (t 'org-schduled))) + (t 'org-scheduled))) (org-add-props txt props 'undone-face face 'face (if donep 'org-done face) diff --git a/lisp/org.el b/lisp/org.el index 66ae14d..e465e46 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -12239,7 +12239,6 @@ When a buffer is unmodified, it is just killed. When modified, it is saved (add-text-properties (match-beginning 0) (org-end-of-subtree t) pc))) (set-buffer-modified-p bmp)))) - (setq debug-on-error t) (setq org-todo-keyword-alist-for-agenda (org-uniquify org-todo-keyword-alist-for-agenda) org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))