mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-20 19:24:20 +00:00
Agenda: Fix remote editing of priorities from agenda.
There was a bug when the entry to be edited was invisible.
This commit is contained in:
parent
be7d0c4a6c
commit
40a38050fd
@ -1,5 +1,7 @@
|
||||
2009-02-20 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-priority): Also find invisible heading.
|
||||
|
||||
* org-colview-xemacs.el (org-columns-edit-value): No special
|
||||
treatment for `org-todo' prefix.
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user