From 6bd323c6b3f65b26273d5efb7ddd0ac04d039546 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 15 Jun 1998 19:30:31 +0000 Subject: Remove un-needed braces around single statements. --- src/bin/pgtclsh/pgtkAppInit.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/bin/pgtclsh/pgtkAppInit.c') diff --git a/src/bin/pgtclsh/pgtkAppInit.c b/src/bin/pgtclsh/pgtkAppInit.c index bdb569cb3c..0bf685bd1a 100644 --- a/src/bin/pgtclsh/pgtkAppInit.c +++ b/src/bin/pgtclsh/pgtkAppInit.c @@ -75,13 +75,9 @@ int Tcl_AppInit(Tcl_Interp * interp) { if (Tcl_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } if (Tk_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } /* * Call the init procedures for included packages. Each call should @@ -93,9 +89,7 @@ Tcl_AppInit(Tcl_Interp * interp) */ if (Pgtcl_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } /* * Call Tcl_CreateCommand for application-specific commands, if they -- cgit v1.2.1