summary refs log tree commit diff stats
path: root/plugins
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-20 19:12:39 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-20 19:12:39 +0200
commitf15b8090b7821f4527376f90668b135ec7b95522 (patch)
treef6871b738d9852290797cb160731e4b5ec4240e9 /plugins
parent78cc4adfedfd4c5f68ab90e75675a7a4c06e8766 (diff)
Eliminate some Tcl noise
Diffstat (limited to 'plugins')
-rw-r--r--plugins/tcl/tclplugin.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/tcl/tclplugin.c b/plugins/tcl/tclplugin.c
index 317854fd..30a0a1b5 100644
--- a/plugins/tcl/tclplugin.c
+++ b/plugins/tcl/tclplugin.c
@@ -2203,9 +2203,11 @@ static void Tcl_Plugin_DeInit()
 
 static void banner()
 {
+#if 0
     xchat_printf(ph, "Tcl plugin for HexChat - Version %s\n", VERSION);
     xchat_print(ph, "Copyright 2002-2005 Daniel P. Stasinski\n");
     xchat_print(ph, "http://www.scriptkitties.com/tclplugin/\n");
+#endif
 }
 
 int xchat_plugin_init(xchat_plugin * plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg)
@@ -2229,7 +2231,7 @@ int xchat_plugin_init(xchat_plugin * plugin_handle, char **plugin_name, char **p
 
     if (initialized != 0) {
         banner();
-        xchat_print(ph, "Tcl plugin already loaded");
+        xchat_print(ph, "Tcl interface already loaded");
         reinit_tried++;
         return 0;
     }