summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ecay <aaronecay@gmail.com>2018-05-10 01:10:52 +0100
committerAaron Ecay <aaronecay@gmail.com>2018-05-10 01:10:52 +0100
commit2b7677c097e9fae2752513cbe2a511cdff67d674 (patch)
tree0252400c9153c1ec2bedb56642f7cc1f1429d496
parent581fd9064535bef40c620bbd8f8d1fa0b28feb66 (diff)
downloadorg-mode-2b7677c097e9fae2752513cbe2a511cdff67d674.tar.gz
ob-js.el: fix declare-function calls for external library fns
Otherwise, check-declare gives us errors if these dependencies are not installed.
-rw-r--r--lisp/ob-js.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ob-js.el b/lisp/ob-js.el
index 32ae6a3..0f009da 100644
--- a/lisp/ob-js.el
+++ b/lisp/ob-js.el
@@ -41,11 +41,11 @@
(require 'ob)
(declare-function run-mozilla "ext:moz" (arg))
-(declare-function httpd-start "simple-httpd" ())
-(declare-function run-skewer "skewer-mode" ())
-(declare-function skewer-repl "skewer-repl" ())
-(declare-function indium-run-node "indium-nodejs" (command))
-(declare-function indium-eval "indium-interaction" (string &optional callback))
+(declare-function httpd-start "ext:simple-httpd" ())
+(declare-function run-skewer "ext:skewer-mode" ())
+(declare-function skewer-repl "ext:skewer-repl" ())
+(declare-function indium-run-node "ext:indium-nodejs" (command))
+(declare-function indium-eval "ext:indium-interaction" (string &optional callback))
(defvar org-babel-default-header-args:js '()
"Default header arguments for js code blocks.")