diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-01-29 00:56:27 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-01-29 00:56:27 -0500 |
commit | 685922201c8632b8bb1aa9e618c548e0a72e749d (patch) | |
tree | 73fbc4bd40e78b422de6899cbcf3e24ad822f90b /bog.el | |
parent | 2ba934d1d760a4d1e15a774d4d129863d6cd4ed3 (diff) | |
download | bog-685922201c8632b8bb1aa9e618c548e0a72e749d.tar.gz |
Remove unnecessary backquote substitution
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -848,7 +848,7 @@ If the citekey file prompt is slow to appear, consider enabling All headings from Org files in `bog-note-directory' at or above level `bog-refile-maxlevel' are considered." (interactive) - (let ((org-refile-targets `((,(bog-notes) + (let ((org-refile-targets `((bog-notes :maxlevel . ,bog-refile-maxlevel)))) (org-refile))) |