From 033abff4c083bdedb67f7cd50788c1611ed87557 Mon Sep 17 00:00:00 2001 From: Luis Anaya Date: Mon, 10 Sep 2012 14:54:05 -0400 Subject: [PATCH] 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. --- contrib/babel/langs/ob-tcl.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/babel/langs/ob-tcl.el b/contrib/babel/langs/ob-tcl.el index ee0c98b82..db2a7be90 100644 --- a/contrib/babel/langs/ob-tcl.el +++ b/contrib/babel/langs/ob-tcl.el @@ -38,8 +38,11 @@ (defvar org-babel-default-header-args:tcl nil) -(defvar org-babel-tcl-command "tclsh" - "Name of command to use for executing tcl code.") +(defcustom org-babel-tcl-command "tclsh" +"Name of command to use for executing Tcl code." + :group 'org-babel + :type 'string) + (defun org-babel-execute:tcl (body params) "Execute a block of Tcl code with Babel.