summaryrefslogtreecommitdiff
path: root/lisp/km-org.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-02-06 23:48:25 -0500
committerKyle Meyer <kyle@kyleam.com>2016-02-06 23:48:25 -0500
commit96c09fe281b9307430d7353a24ff00fe06f838f9 (patch)
treefe13c694f1016b972026f462afc4724ed5429337 /lisp/km-org.el
parent8d309bb504a07dd37f41e590b4ed95488bf3f2e8 (diff)
downloademacs.d-96c09fe281b9307430d7353a24ff00fe06f838f9.tar.gz
org-agenda: Keep default-directory with restriction
Diffstat (limited to 'lisp/km-org.el')
-rw-r--r--lisp/km-org.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/km-org.el b/lisp/km-org.el
index fcf82ed..5098748 100644
--- a/lisp/km-org.el
+++ b/lisp/km-org.el
@@ -308,8 +308,9 @@ called through the speed command interface."
;;;###autoload
(defun km/org-agenda-cd-and-read-dir-locals ()
- (setq default-directory "~/notes/")
- (hack-local-variables))
+ (unless (get 'org-agenda-files 'org-restrict)
+ (setq default-directory "~/notes/")
+ (hack-local-variables)))
;;;###autoload
(defun km/org-agenda-store-current-span ()