From 165e8cbf34ee58d411d69933b90bc41450005e4d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 20 Jul 2004 06:44:46 +0000 Subject: Assign 'forced' before the goto to avoid a warning --- editors/vi.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'editors/vi.c') diff --git a/editors/vi.c b/editors/vi.c index c5a37d750..b1d7034d4 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -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" // :! // run 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 -- cgit v1.2.3