1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-13 09:32:19 +00:00

ob-J: Add missing keywords in defcustom

* lisp/ob-J.el (org-babel-J-command): Add missing keywords.
This commit is contained in:
Nicolas Goaziou 2016-09-14 23:27:17 +02:00
parent e37cb08dc5
commit 0ba465b899

View File

@ -29,18 +29,19 @@
;; (available in MELPA).
;;; Code:
(require 'ob)
(defcustom org-babel-J-command
"jconsole"
"Command to call J."
:group 'org-babel
:type 'string)
(require 'ob)
(declare-function org-trim "org" (s &optional keep-lead))
(declare-function j-console-ensure-session "ext:j-console" ())
(defcustom org-babel-J-command "jconsole"
"Command to call J."
:group 'org-babel
:version "25.2"
:package-version '(Org . "9.0")
:type 'string)
(defun org-babel-expand-body:J (body _params &optional _processed-params)
"Expand BODY according to PARAMS, return the expanded body.
PROCESSED-PARAMS isn't used yet."