A patch from Vladimir to use last_char_is(), and a patch from
Larry to fix a silly bug when BB_FEATURE_VI_OPTIMIZE_CURSOR is not defined.
This commit is contained in:
parent
04b0354d8e
commit
c33ebc9741
11
editors/vi.c
11
editors/vi.c
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
char *vi_Version =
|
char *vi_Version =
|
||||||
"$Id: vi.c,v 1.6 2001/05/07 17:37:43 andersen Exp $";
|
"$Id: vi.c,v 1.7 2001/05/07 22:57:47 andersen Exp $";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* To compile for standalone use:
|
* To compile for standalone use:
|
||||||
@ -1760,9 +1760,10 @@ static void colon(Byte * buf)
|
|||||||
while (isblnk(*buf))
|
while (isblnk(*buf))
|
||||||
buf++;
|
buf++;
|
||||||
strcpy((char *) args, (char *) buf);
|
strcpy((char *) args, (char *) buf);
|
||||||
if (last_char_is((char *)cmd, '!')) {
|
buf1 = last_char_is((char *)cmd, '!');
|
||||||
|
if (buf1) {
|
||||||
useforce = TRUE;
|
useforce = TRUE;
|
||||||
cmd[strlen((char *) cmd) - 1] = '\0'; // get rid of !
|
*buf1 = '\0'; // get rid of !
|
||||||
}
|
}
|
||||||
if (b >= 0) {
|
if (b >= 0) {
|
||||||
// if there is only one addr, then the addr
|
// if there is only one addr, then the addr
|
||||||
@ -3919,9 +3920,11 @@ static void refresh(int full_screen)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
place_cursor(crow, ccol, (crow == last_row) ? TRUE : FALSE);
|
|
||||||
#ifdef BB_FEATURE_VI_OPTIMIZE_CURSOR
|
#ifdef BB_FEATURE_VI_OPTIMIZE_CURSOR
|
||||||
|
place_cursor(crow, ccol, (crow == last_row) ? TRUE : FALSE);
|
||||||
last_row = crow;
|
last_row = crow;
|
||||||
|
#else
|
||||||
|
place_cursor(crow, ccol, FALSE);
|
||||||
#endif /* BB_FEATURE_VI_OPTIMIZE_CURSOR */
|
#endif /* BB_FEATURE_VI_OPTIMIZE_CURSOR */
|
||||||
|
|
||||||
if (offset != old_offset)
|
if (offset != old_offset)
|
||||||
|
11
vi.c
11
vi.c
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
char *vi_Version =
|
char *vi_Version =
|
||||||
"$Id: vi.c,v 1.6 2001/05/07 17:37:43 andersen Exp $";
|
"$Id: vi.c,v 1.7 2001/05/07 22:57:47 andersen Exp $";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* To compile for standalone use:
|
* To compile for standalone use:
|
||||||
@ -1760,9 +1760,10 @@ static void colon(Byte * buf)
|
|||||||
while (isblnk(*buf))
|
while (isblnk(*buf))
|
||||||
buf++;
|
buf++;
|
||||||
strcpy((char *) args, (char *) buf);
|
strcpy((char *) args, (char *) buf);
|
||||||
if (last_char_is((char *)cmd, '!')) {
|
buf1 = last_char_is((char *)cmd, '!');
|
||||||
|
if (buf1) {
|
||||||
useforce = TRUE;
|
useforce = TRUE;
|
||||||
cmd[strlen((char *) cmd) - 1] = '\0'; // get rid of !
|
*buf1 = '\0'; // get rid of !
|
||||||
}
|
}
|
||||||
if (b >= 0) {
|
if (b >= 0) {
|
||||||
// if there is only one addr, then the addr
|
// if there is only one addr, then the addr
|
||||||
@ -3919,9 +3920,11 @@ static void refresh(int full_screen)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
place_cursor(crow, ccol, (crow == last_row) ? TRUE : FALSE);
|
|
||||||
#ifdef BB_FEATURE_VI_OPTIMIZE_CURSOR
|
#ifdef BB_FEATURE_VI_OPTIMIZE_CURSOR
|
||||||
|
place_cursor(crow, ccol, (crow == last_row) ? TRUE : FALSE);
|
||||||
last_row = crow;
|
last_row = crow;
|
||||||
|
#else
|
||||||
|
place_cursor(crow, ccol, FALSE);
|
||||||
#endif /* BB_FEATURE_VI_OPTIMIZE_CURSOR */
|
#endif /* BB_FEATURE_VI_OPTIMIZE_CURSOR */
|
||||||
|
|
||||||
if (offset != old_offset)
|
if (offset != old_offset)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user