From 40a38050fd66ef206431a237dceb134d285bf23d Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 20 Feb 2009 09:30:31 +0100 Subject: [PATCH] Agenda: Fix remote editing of priorities from agenda. There was a bug when the entry to be edited was invisible. --- lisp/ChangeLog | 2 ++ lisp/org.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 81cc86e1e..8684e9eb4 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2009-02-20 Carsten Dominik + * org.el (org-priority): Also find invisible heading. + * org-colview-xemacs.el (org-columns-edit-value): No special treatment for `org-todo' prefix. diff --git a/lisp/org.el b/lisp/org.el index 2dd328814..2a69cb6e7 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9580,7 +9580,7 @@ ACTION can be `set', `up', `down', or a character." (setq action (or action 'set)) (let (current new news have remove) (save-excursion - (org-back-to-heading) + (org-back-to-heading t) (if (looking-at org-priority-regexp) (setq current (string-to-char (match-string 2)) have t) -- 2.11.4.GIT