diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2009-01-28 14:33:23 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2009-01-28 14:33:23 +0000 |
commit | d6685abc9e7e9940fa4e9d683c4cc52826efc0f9 (patch) | |
tree | 63bf2ad01fd427453edd023a38b92f32de965a4d /lisp/org/org-rmail.el | |
parent | f088b054762a1efde71f64690d0418811812dd59 (diff) | |
download | emacs-d6685abc9e7e9940fa4e9d683c4cc52826efc0f9.tar.gz |
2009-01-28 Carsten Dominik <carsten.dominik@gmail.com>
* org-agenda.el (org-agenda-get-todos): Start search from correct
position.
* org.el (org-fast-todo-selection): Make sure TODO selection does
not change buffer position.
* org-list.el (org-toggle-checkbox): Implement adding or removing
checkboxes from line or region when called with a prefix
argument.
* org-rmail.el (org-rmail-store-link): Protect the call to
`rmail-narrow-to-non-pruned-header'.
* org-clock.el (org-clock-special-range): Fix week display in
clock tables.
* org-exp.el (org-get-current-options): Fix bug when in indirect
buffer.
* org-agenda.el (org-agenda-dim-blocked-tasks): New option.
(org-finalize-agenda): Call `org-agenda-dim-blocked-tasks'.
(org-agenda-dim-blocked-tasks): New function.
* org.el (org-enforce-todo-dependencies): New option.
(org-block-todo-from-children-or-siblings): New function.
* org-faces.el (org-agenda-dimmed-todo-face): New face.
Diffstat (limited to 'lisp/org/org-rmail.el')
-rw-r--r-- | lisp/org/org-rmail.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/org/org-rmail.el b/lisp/org/org-rmail.el index 895da636dec..e24815c99e8 100644 --- a/lisp/org/org-rmail.el +++ b/lisp/org/org-rmail.el @@ -6,7 +6,7 @@ ;; Author: Carsten Dominik <carsten at orgmode dot org> ;; Keywords: outlines, hypermedia, calendar, wp ;; Homepage: http://orgmode.org -;; Version: 6.19e +;; Version: 6.20c ;; ;; This file is part of GNU Emacs. ;; @@ -52,7 +52,8 @@ (save-restriction (when (eq major-mode 'rmail-summary-mode) (rmail-show-message rmail-current-message)) - (rmail-narrow-to-non-pruned-header) + (when (fboundp 'rmail-narrow-to-non-pruned-header) + (rmail-narrow-to-non-pruned-header)) (let* ((folder buffer-file-name) (message-id (mail-fetch-field "message-id")) (from (mail-fetch-field "from")) |