aboutsummaryrefslogtreecommitdiff
path: root/vi.c
diff options
context:
space:
mode:
Diffstat (limited to 'vi.c')
-rw-r--r--vi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vi.c b/vi.c
index 6a93fc1fe..96fc96559 100644
--- a/vi.c
+++ b/vi.c
@@ -19,7 +19,7 @@
19 */ 19 */
20 20
21char *vi_Version = 21char *vi_Version =
22 "$Id: vi.c,v 1.4 2001/04/16 15:46:44 andersen Exp $"; 22 "$Id: vi.c,v 1.5 2001/04/26 15:56:47 andersen Exp $";
23 23
24/* 24/*
25 * To compile for standalone use: 25 * To compile for standalone use:
@@ -1745,7 +1745,7 @@ static void colon(Byte * buf)
1745 while (isblnk(*buf)) 1745 while (isblnk(*buf))
1746 buf++; 1746 buf++;
1747 strcpy((char *) args, (char *) buf); 1747 strcpy((char *) args, (char *) buf);
1748 if (cmd[strlen((char *) cmd) - 1] == '!') { 1748 if (last_char_is((char *)cmd,'!')) {
1749 useforce = TRUE; 1749 useforce = TRUE;
1750 cmd[strlen((char *) cmd) - 1] = '\0'; // get rid of ! 1750 cmd[strlen((char *) cmd) - 1] = '\0'; // get rid of !
1751 } 1751 }