mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-23 10:34:17 +00:00
ob-js.el: fix declare-function calls for external library fns
Otherwise, check-declare gives us errors if these dependencies are not installed.
This commit is contained in:
parent
581fd90645
commit
2b7677c097
@ -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.")
|
||||
|
Loading…
Reference in New Issue
Block a user