Assign 'forced' before the goto to avoid a warning
authorEric Andersen <andersen@codepoet.org>
Tue, 20 Jul 2004 06:44:46 +0000 (06:44 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 20 Jul 2004 06:44:46 +0000 (06:44 -0000)
editors/vi.c

index c5a37d75086d7a3a7c9b5f6c6b4c804eaeadf18f..b1d7034d4aead72328adc2bd07ddf5e6eb8bee41 100644 (file)
@@ -19,7 +19,7 @@
  */
 
 static const char vi_Version[] =
-       "$Id: vi.c,v 1.36 2004/04/14 17:51:09 andersen Exp $";
+       "$Id: vi.c,v 1.37 2004/07/20 06:44:46 andersen Exp $";
 
 /*
  * To compile for standalone use:
@@ -693,12 +693,13 @@ static void colon(Byte * buf)
        // :s/find/replace/ // substitute pattern "find" with "replace"
        // :!<cmd>      // run <cmd> then return
        //
+       forced = useforce = FALSE;
+
        if (strlen((char *) buf) <= 0)
                goto vc1;
        if (*buf == ':')
                buf++;                  // move past the ':'
 
-       forced = useforce = FALSE;
        li = st = ch = i = 0;
        b = e = -1;
        q = text;                       // assume 1,$ for the range