From 8f93a75cacbfffb120d5ce18c494e2b85afa8d74 Mon Sep 17 00:00:00 2001 From: Bernt Hansen Date: Fri, 30 Dec 2011 05:49:09 -0500 Subject: [PATCH] Honour existing restrictions when visiting tasks from the agenda * lisp/org-agenda.el (org-agenda-switch-to): Widen org buffer only if point is outside the current restriction Widen org buffer when visiting from agenda only if point is outside current restriction. Visiting a task with RET or TAB in the agenda should not affect the org-mode buffer restriction unless the target task is not currently visible due to the restriction. --- lisp/org-agenda.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index e45ee14f8..8927b61e9 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -7113,7 +7113,9 @@ at the text of the entry itself." (pos (marker-position marker))) (org-pop-to-buffer-same-window buffer) (and delete-other-windows (delete-other-windows)) - (widen) + (when (or (< pos (point-min)) + (> pos (point-max))) + (widen)) (goto-char pos) (when (eq major-mode 'org-mode) (org-show-context 'agenda) -- 2.11.4.GIT