emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] How about allowing indirect buffers for agenda restriction?


From: Alex Bochannek
Subject: [Orgmode] How about allowing indirect buffers for agenda restriction?
Date: Tue, 31 Oct 2006 00:55:45 -0800
User-agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (windows-nt)

This is related to the narrowing patch I sent. Basically, I create a
indirect buffer clone, which I narrow to my Projects outline, but
still want to be able to call agenda commands that limit to the
file. Since indirect buffers have no file associated with them, I
thought the code below may be sufficient to do what I need it to. Not
well tested.

Alex.


$ diff -bu ../org-4.52/org.el org.el
--- ../org-4.52/org.el  2006-10-04 02:14:17.000000000 -0700
+++ org.el      2006-10-31 00:48:09.047839000 -0800
@@ -6883,6 +6884,8 @@
 first press `1' to indicate that the agenda should be temporarily (until the
 next use of \\[org-agenda]) restricted to the current file."
   (interactive "P")
+  (save-excursion
+    (set-buffer (or (buffer-base-buffer) (current-buffer)))
   (catch 'exit
     (let ((restrict-ok (and buffer-file-name (org-mode-p)))
          (buf (current-buffer))
@@ -6995,7 +6998,7 @@
                (org-let lprops '(org-occur match)))
               (t (error "Invalid custom agenda command type %s" type))))
          (org-run-agenda-series (cddr entry))))
-       (t (error "Invalid key"))))))
+       (t (error "Invalid key")))))))
 
 ;; FIXME: what is the meaning of WINDOW?????
 (defun org-run-agenda-series (series &optional window)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]