diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-01-28 23:51:44 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-01-28 23:51:44 -0500 |
commit | 1b9f75009ec9021533c1463e40646ed75482e89a (patch) | |
tree | 68fee651b525113426cd139820160c090bb9c992 /lisp | |
parent | 3557df9912c22ca77a2fd6d678781a3afc46fb1a (diff) | |
download | emacs.d-1b9f75009ec9021533c1463e40646ed75482e89a.tar.gz |
Explicitly require cl-lib
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-org.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el index c4340d9..7a1b769 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -329,7 +329,7 @@ killed." If a link for FILE does not exist, create it. Otherwise, remove it. Like `org-agenda-file-to-front', this results in FILE being displayed in the agenda." - (interactive (list (case major-mode + (interactive (list (cl-case major-mode (org-mode (buffer-file-name)) (dired-mode (dired-get-filename)) (org-agenda-mode (ignore-errors (save-window-excursion |