diff options
author | 2020-04-16 18:10:10 -0400 | |
---|---|---|
committer | 2020-04-16 18:10:10 -0400 | |
commit | 3d7cc479c6dcc9550b9f03176272f5a9c4655b4c (patch) | |
tree | 897afc15a9a320f1da83fa3579dce19e9c0ce3ad /lisp/bandali-org.el | |
parent | 46b0569f717f7e5fa9cc43355bd5d8a544521453 (diff) | |
download | configs-3d7cc479c6dcc9550b9f03176272f5a9c4655b4c.tar.gz configs-3d7cc479c6dcc9550b9f03176272f5a9c4655b4c.tar.xz configs-3d7cc479c6dcc9550b9f03176272f5a9c4655b4c.zip |
Address a few more byte-compiler warnings
Diffstat (limited to 'lisp/bandali-org.el')
-rw-r--r-- | lisp/bandali-org.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/bandali-org.el b/lisp/bandali-org.el index 76b5c6c..a9ab750 100644 --- a/lisp/bandali-org.el +++ b/lisp/bandali-org.el @@ -77,6 +77,7 @@ (use-package ox-extra :config + (declare-function ox-extras-activate "ox-extra" (extras)) (ox-extras-activate '(latex-header-blocks ignore-headlines))) ;; asynchronous tangle, using emacs-async to asynchronously tangle an @@ -96,7 +97,8 @@ (file (buffer-file-name)) (file-nodir (file-name-nondirectory file)) ;; (async-quiet-switch "-q") - (file-noext (file-name-sans-extension file))) + ;; (file-noext (file-name-sans-extension file)) + ) (async-start `(lambda () (require 'org) |