0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.0221

This commit is contained in:
Bram Moolenaar
2006-03-11 21:18:15 +00:00
parent 8ee8926785
commit d996771378
2 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
*map.txt* For Vim version 7.0aa. Last change: 2006 Mar 10 *map.txt* For Vim version 7.0aa. Last change: 2006 Mar 11
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -224,7 +224,7 @@ Here is an example that inserts a list number that increases: >
return '' return ''
endfunc endfunc
CTRL-L inserts the next number, CTRL-E resets the count. CTRL-E returns an CTRL-L inserts the next number, CTRL-R resets the count. CTRL-R returns an
empty string, so that nothing is inserted. empty string, so that nothing is inserted.

View File

@@ -150,7 +150,6 @@ static void ex_quit_all __ARGS((exarg_T *eap));
static void ex_close __ARGS((exarg_T *eap)); static void ex_close __ARGS((exarg_T *eap));
static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp)); static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
static void ex_only __ARGS((exarg_T *eap)); static void ex_only __ARGS((exarg_T *eap));
static void ex_all __ARGS((exarg_T *eap));
static void ex_resize __ARGS((exarg_T *eap)); static void ex_resize __ARGS((exarg_T *eap));
static void ex_stag __ARGS((exarg_T *eap)); static void ex_stag __ARGS((exarg_T *eap));
static void ex_tabclose __ARGS((exarg_T *eap)); static void ex_tabclose __ARGS((exarg_T *eap));
@@ -6159,7 +6158,7 @@ ex_quit_all(eap)
not_exiting(); not_exiting();
} }
#ifdef FEAT_WINDOWS #if defined(FEAT_WINDOWS) || defined(PROTO)
/* /*
* ":close": close current window, unless it is the last one * ":close": close current window, unless it is the last one
*/ */
@@ -6383,14 +6382,15 @@ ex_only(eap)
/* /*
* ":all" and ":sall". * ":all" and ":sall".
* Also used for ":tab drop file ..." after setting the argument list.
*/ */
static void void
ex_all(eap) ex_all(eap)
exarg_T *eap; exarg_T *eap;
{ {
if (eap->addr_count == 0) if (eap->addr_count == 0)
eap->line2 = 9999; eap->line2 = 9999;
do_arg_all((int)eap->line2, eap->forceit); do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
} }
#endif /* FEAT_WINDOWS */ #endif /* FEAT_WINDOWS */