mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-029
This commit is contained in:
parent
1256e720f5
commit
7bb755519e
@ -133,6 +133,7 @@ static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
|
|||||||
static void get_flags __ARGS((exarg_T *eap));
|
static void get_flags __ARGS((exarg_T *eap));
|
||||||
#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
|
#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
|
||||||
|| !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
|
|| !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
|
||||||
|
# define HAVE_EX_SCRIPT_NI
|
||||||
static void ex_script_ni __ARGS((exarg_T *eap));
|
static void ex_script_ni __ARGS((exarg_T *eap));
|
||||||
#endif
|
#endif
|
||||||
static char_u *invalid_range __ARGS((exarg_T *eap));
|
static char_u *invalid_range __ARGS((exarg_T *eap));
|
||||||
@ -2119,7 +2120,10 @@ do_one_cmd(cmdlinep, sourcing,
|
|||||||
!USER_CMDIDX(ea.cmdidx) &&
|
!USER_CMDIDX(ea.cmdidx) &&
|
||||||
#endif
|
#endif
|
||||||
(cmdnames[ea.cmdidx].cmd_func == ex_ni
|
(cmdnames[ea.cmdidx].cmd_func == ex_ni
|
||||||
|| cmdnames[ea.cmdidx].cmd_func == ex_script_ni));
|
#ifdef HAVE_EX_SCRIPT_NI
|
||||||
|
|| cmdnames[ea.cmdidx].cmd_func == ex_script_ni
|
||||||
|
#endif
|
||||||
|
));
|
||||||
|
|
||||||
#ifndef FEAT_EVAL
|
#ifndef FEAT_EVAL
|
||||||
/*
|
/*
|
||||||
@ -3998,8 +4002,7 @@ ex_ni(eap)
|
|||||||
eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
|
eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
|
#ifdef HAVE_EX_SCRIPT_NI
|
||||||
|| !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
|
|
||||||
/*
|
/*
|
||||||
* Function called for script command which is Not Implemented. NI!
|
* Function called for script command which is Not Implemented. NI!
|
||||||
* Skips over ":perl <<EOF" constructs.
|
* Skips over ":perl <<EOF" constructs.
|
||||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
29,
|
||||||
/**/
|
/**/
|
||||||
28,
|
28,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user