aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pgtclsh/pgtclAppInit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pgtclsh/pgtclAppInit.c')
-rw-r--r--src/bin/pgtclsh/pgtclAppInit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/pgtclsh/pgtclAppInit.c b/src/bin/pgtclsh/pgtclAppInit.c
index f344dd403ef..d121d28a14a 100644
--- a/src/bin/pgtclsh/pgtclAppInit.c
+++ b/src/bin/pgtclsh/pgtclAppInit.c
@@ -76,9 +76,7 @@ int
Tcl_AppInit(Tcl_Interp * interp)
{
if (Tcl_Init(interp) == TCL_ERROR)
- {
return TCL_ERROR;
- }
/*
* Call the init procedures for included packages. Each call should
@@ -90,9 +88,7 @@ Tcl_AppInit(Tcl_Interp * interp)
*/
if (Pgtcl_Init(interp) == TCL_ERROR)
- {
return TCL_ERROR;
- }
/*
* Call Tcl_CreateCommand for application-specific commands, if they