mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-21 06:55:35 +00:00
ext: prefix on external file names
This commit is contained in:
parent
9de1e9c6cc
commit
15b36e2380
@ -37,8 +37,8 @@
|
||||
(declare-function org-babel-comint-buffer-livep "ob-comint" (buffer))
|
||||
(declare-function org-babel-comint-with-output "ob-comint" (meta &rest body))
|
||||
(declare-function orgtbl-to-tsv "ob-table" (table params))
|
||||
(declare-function R "essd-r" (&optional start-args))
|
||||
(declare-function inferior-ess-send-input "ess-inf" ())
|
||||
(declare-function R "ext:essd-r" (&optional start-args))
|
||||
(declare-function inferior-ess-send-input "ext:ess-inf" ())
|
||||
|
||||
(defconst org-babel-header-arg-names:R
|
||||
'(width height bg units pointsize antialias quality compression
|
||||
|
@ -42,13 +42,13 @@
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
(declare-function slime-eval-async "slime" (sexp &optional cont package))
|
||||
(declare-function slime-eval "slime" (sexp &optional package))
|
||||
(declare-function swank-clojure-concat-paths "slime" (paths))
|
||||
(declare-function org-babel-ref-variables "slime" (params))
|
||||
(declare-function slime "slime" (&optional command coding-system))
|
||||
(declare-function slime-output-buffer "slime" (&optional noprompt))
|
||||
(declare-function slime-filter-buffers "slime" (predicate))
|
||||
(declare-function slime-eval-async "ext:slime" (sexp &optional cont package))
|
||||
(declare-function slime-eval "ext:slime" (sexp &optional package))
|
||||
(declare-function swank-clojure-concat-paths "ext:slime" (paths))
|
||||
(declare-function org-babel-ref-variables "ext:slime" (params))
|
||||
(declare-function slime "ext:slime" (&optional command coding-system))
|
||||
(declare-function slime-output-buffer "ext:slime" (&optional noprompt))
|
||||
(declare-function slime-filter-buffers "ext:slime" (predicate))
|
||||
|
||||
(add-to-list 'org-babel-tangle-lang-exts '("clojure" . "clj"))
|
||||
|
||||
|
@ -47,9 +47,9 @@
|
||||
(declare-function org-time-string-to-time "org" (s))
|
||||
(declare-function org-combine-plists "org" (&rest plists))
|
||||
(declare-function orgtbl-to-generic "org-table" (table params))
|
||||
(declare-function gnuplot-mode "gnuplot-mode" ())
|
||||
(declare-function gnuplot-send-string-to-gnuplot "gnuplot-mode" (string text))
|
||||
(declare-function gnuplot-send-buffer-to-gnuplot "gnuplot-mode" ())
|
||||
(declare-function gnuplot-mode "ext:gnuplot-mode" ())
|
||||
(declare-function gnuplot-send-string-to-gnuplot "ext:gnuplot-mode" (str txt))
|
||||
(declare-function gnuplot-send-buffer-to-gnuplot "ext:gnuplot-mode" ())
|
||||
|
||||
(defvar org-babel-default-header-args:gnuplot
|
||||
'((:results . "file") (:exports . "results") (:session . nil))
|
||||
|
@ -41,7 +41,7 @@
|
||||
(require 'comint)
|
||||
(eval-when-compile (require 'cl))
|
||||
|
||||
(declare-function tuareg-run-caml "taureg" ())
|
||||
(declare-function tuareg-run-caml "ext:taureg" ())
|
||||
|
||||
(add-to-list 'org-babel-tangle-lang-exts '("ocaml" . "ml"))
|
||||
|
||||
|
@ -35,8 +35,8 @@
|
||||
(require 'ob-comint)
|
||||
(eval-when-compile (require 'cl))
|
||||
|
||||
(declare-function matlab-shell "matlab-mode")
|
||||
(declare-function matlab-shell-run-region "matlab-mode")
|
||||
(declare-function matlab-shell "ext:matlab-mode")
|
||||
(declare-function matlab-shell-run-region "ext:matlab-mode")
|
||||
|
||||
(defvar org-babel-default-header-args:matlab '())
|
||||
(defvar org-babel-default-header-args:octave '())
|
||||
|
@ -43,7 +43,7 @@
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
(declare-function run-ruby "inf-ruby" (&optional command name))
|
||||
(declare-function run-ruby "ext:inf-ruby" (&optional command name))
|
||||
|
||||
(add-to-list 'org-babel-tangle-lang-exts '("ruby" . "rb"))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user