From 94f3e7f0de09b709e5cb431a622293caadb382c0 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 4 Jun 2019 10:18:14 -0700 Subject: [PATCH] export sourceTclFileEchoVerbose --- app/StaMain.cc | 6 +----- app/StaMain.hh | 4 ++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/StaMain.cc b/app/StaMain.cc index 79ab685f..f9d0941b 100644 --- a/app/StaMain.cc +++ b/app/StaMain.cc @@ -34,10 +34,6 @@ static SwigInitFunc sta_swig_init; static const char *init_filename = "[file join $env(HOME) .sta]"; -static void -sourceTclFileEchoVerbose(const char *filename, - Tcl_Interp *interp); - void staMain(Sta *sta, int argc, @@ -165,7 +161,7 @@ findCmdLineKey(int argc, } // Use overridden version of source to echo cmds and results. -static void +void sourceTclFileEchoVerbose(const char *filename, Tcl_Interp *interp) { diff --git a/app/StaMain.hh b/app/StaMain.hh index ab265c27..71de1a59 100644 --- a/app/StaMain.hh +++ b/app/StaMain.hh @@ -74,5 +74,9 @@ parseCmdsArg(int argc, bool &native_cmds, bool &compatibility_cmds); +void +sourceTclFileEchoVerbose(const char *filename, + Tcl_Interp *interp); + } // namespace #endif