0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 05:46:27 +00:00

Changed `org-babel-tcl-command' from a defvar to a defcustom.

* ob-tcl.el (org-babel-tcl-command):
Changed `org-babel-tcl-command' from a defvar to a defcustom.
This commit is contained in:
Luis Anaya 2012-09-10 14:54:05 -04:00
parent f7f0445cc1
commit 033abff4c0

View file

@ -38,8 +38,11 @@
(defvar org-babel-default-header-args:tcl nil) (defvar org-babel-default-header-args:tcl nil)
(defvar org-babel-tcl-command "tclsh" (defcustom org-babel-tcl-command "tclsh"
"Name of command to use for executing tcl code.") "Name of command to use for executing Tcl code."
:group 'org-babel
:type 'string)
(defun org-babel-execute:tcl (body params) (defun org-babel-execute:tcl (body params)
"Execute a block of Tcl code with Babel. "Execute a block of Tcl code with Babel.