diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-06 23:48:25 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-06 23:48:25 -0500 |
commit | 96c09fe281b9307430d7353a24ff00fe06f838f9 (patch) | |
tree | fe13c694f1016b972026f462afc4724ed5429337 /lisp | |
parent | 8d309bb504a07dd37f41e590b4ed95488bf3f2e8 (diff) | |
download | emacs.d-96c09fe281b9307430d7353a24ff00fe06f838f9.tar.gz |
org-agenda: Keep default-directory with restriction
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-org.el | 5 |
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 () |