diff options
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 () |