From ed47d2f35707411c37023a25ef47e84d7a0dd415 Mon Sep 17 00:00:00 2001 From: bilalkhanqadri <62916113+bilalkhanqadri@users.noreply.github.com> Date: Sun, 5 Apr 2020 22:47:35 +0500 Subject: [PATCH] update tcl.el "wish" command can undesirable sometimes (specially for non-gui programs). "tclsh" is a better choice(with less baggage) to start the tcl process. --- lisp/progmodes/tcl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index 7ffa6d41dacf..b63e6fb221ac 100644 --- a/lisp/progmodes/tcl.el +++ b/lisp/progmodes/tcl.el @@ -176,7 +176,7 @@ taken to mean `smart'. The default is nil." :type 'boolean :group 'tcl) -(defcustom tcl-application "wish" +(defcustom tcl-application "tclsh" "Name of Tcl program to run in inferior Tcl mode." :type 'string :group 'tcl)