mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.1-123
This commit is contained in:
parent
dfc7aa2ccd
commit
9f0545d6de
@ -4403,7 +4403,7 @@ expand_filename(eap, cmdlinep, errormsgp)
|
|||||||
|| vim_strchr(eap->arg, '~') != NULL)
|
|| vim_strchr(eap->arg, '~') != NULL)
|
||||||
{
|
{
|
||||||
expand_env_esc(eap->arg, NameBuff, MAXPATHL,
|
expand_env_esc(eap->arg, NameBuff, MAXPATHL,
|
||||||
TRUE, NULL);
|
TRUE, TRUE, NULL);
|
||||||
has_wildcards = mch_has_wildcard(NameBuff);
|
has_wildcards = mch_has_wildcard(NameBuff);
|
||||||
p = NameBuff;
|
p = NameBuff;
|
||||||
}
|
}
|
||||||
|
59
src/misc1.c
59
src/misc1.c
@ -3505,10 +3505,39 @@ free_homedir()
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Call expand_env() and store the result in an allocated string.
|
||||||
|
* This is not very memory efficient, this expects the result to be freed
|
||||||
|
* again soon.
|
||||||
|
*/
|
||||||
|
char_u *
|
||||||
|
expand_env_save(src)
|
||||||
|
char_u *src;
|
||||||
|
{
|
||||||
|
return expand_env_save_opt(src, FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Idem, but when "one" is TRUE handle the string as one file name, only
|
||||||
|
* expand "~" at the start.
|
||||||
|
*/
|
||||||
|
char_u *
|
||||||
|
expand_env_save_opt(src, one)
|
||||||
|
char_u *src;
|
||||||
|
int one;
|
||||||
|
{
|
||||||
|
char_u *p;
|
||||||
|
|
||||||
|
p = alloc(MAXPATHL);
|
||||||
|
if (p != NULL)
|
||||||
|
expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Expand environment variable with path name.
|
* Expand environment variable with path name.
|
||||||
* "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
|
* "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
|
||||||
* Skips over "\ ", "\~" and "\$".
|
* Skips over "\ ", "\~" and "\$" (not for Win32 though).
|
||||||
* If anything fails no expansion is done and dst equals src.
|
* If anything fails no expansion is done and dst equals src.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
@ -3517,15 +3546,16 @@ expand_env(src, dst, dstlen)
|
|||||||
char_u *dst; /* where to put the result */
|
char_u *dst; /* where to put the result */
|
||||||
int dstlen; /* maximum length of the result */
|
int dstlen; /* maximum length of the result */
|
||||||
{
|
{
|
||||||
expand_env_esc(src, dst, dstlen, FALSE, NULL);
|
expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
expand_env_esc(srcp, dst, dstlen, esc, startstr)
|
expand_env_esc(srcp, dst, dstlen, esc, one, startstr)
|
||||||
char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
|
char_u *srcp; /* input string e.g. "$HOME/vim.hlp" */
|
||||||
char_u *dst; /* where to put the result */
|
char_u *dst; /* where to put the result */
|
||||||
int dstlen; /* maximum length of the result */
|
int dstlen; /* maximum length of the result */
|
||||||
int esc; /* escape spaces in expanded variables */
|
int esc; /* escape spaces in expanded variables */
|
||||||
|
int one; /* "srcp" is one file name */
|
||||||
char_u *startstr; /* start again after this (can be NULL) */
|
char_u *startstr; /* start again after this (can be NULL) */
|
||||||
{
|
{
|
||||||
char_u *src;
|
char_u *src;
|
||||||
@ -3766,6 +3796,8 @@ expand_env_esc(srcp, dst, dstlen, esc, startstr)
|
|||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Recognize the start of a new name, for '~'.
|
* Recognize the start of a new name, for '~'.
|
||||||
|
* Don't do this when "one" is TRUE, to avoid expanding "~" in
|
||||||
|
* ":edit foo ~ foo".
|
||||||
*/
|
*/
|
||||||
at_start = FALSE;
|
at_start = FALSE;
|
||||||
if (src[0] == '\\' && src[1] != NUL)
|
if (src[0] == '\\' && src[1] != NUL)
|
||||||
@ -3773,7 +3805,7 @@ expand_env_esc(srcp, dst, dstlen, esc, startstr)
|
|||||||
*dst++ = *src++;
|
*dst++ = *src++;
|
||||||
--dstlen;
|
--dstlen;
|
||||||
}
|
}
|
||||||
else if (src[0] == ' ' || src[0] == ',')
|
else if ((src[0] == ' ' || src[0] == ',') && !one)
|
||||||
at_start = TRUE;
|
at_start = TRUE;
|
||||||
*dst++ = *src++;
|
*dst++ = *src++;
|
||||||
--dstlen;
|
--dstlen;
|
||||||
@ -4069,23 +4101,6 @@ remove_tail(p, pend, name)
|
|||||||
return pend;
|
return pend;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Call expand_env() and store the result in an allocated string.
|
|
||||||
* This is not very memory efficient, this expects the result to be freed
|
|
||||||
* again soon.
|
|
||||||
*/
|
|
||||||
char_u *
|
|
||||||
expand_env_save(src)
|
|
||||||
char_u *src;
|
|
||||||
{
|
|
||||||
char_u *p;
|
|
||||||
|
|
||||||
p = alloc(MAXPATHL);
|
|
||||||
if (p != NULL)
|
|
||||||
expand_env(src, p, MAXPATHL);
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Our portable version of setenv.
|
* Our portable version of setenv.
|
||||||
*/
|
*/
|
||||||
@ -9139,7 +9154,7 @@ gen_expand_wildcards(num_pat, pat, num_file, file, flags)
|
|||||||
*/
|
*/
|
||||||
if (vim_strpbrk(p, (char_u *)"$~") != NULL)
|
if (vim_strpbrk(p, (char_u *)"$~") != NULL)
|
||||||
{
|
{
|
||||||
p = expand_env_save(p);
|
p = expand_env_save_opt(p, TRUE);
|
||||||
if (p == NULL)
|
if (p == NULL)
|
||||||
p = pat[i];
|
p = pat[i];
|
||||||
#ifdef UNIX
|
#ifdef UNIX
|
||||||
|
@ -4996,7 +4996,7 @@ option_expand(opt_idx, val)
|
|||||||
* For 'spellsuggest' expand after "file:".
|
* For 'spellsuggest' expand after "file:".
|
||||||
*/
|
*/
|
||||||
expand_env_esc(val, NameBuff, MAXPATHL,
|
expand_env_esc(val, NameBuff, MAXPATHL,
|
||||||
(char_u **)options[opt_idx].var == &p_tags,
|
(char_u **)options[opt_idx].var == &p_tags, FALSE,
|
||||||
#ifdef FEAT_SPELL
|
#ifdef FEAT_SPELL
|
||||||
(char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
|
(char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
|
||||||
#endif
|
#endif
|
||||||
|
@ -48,10 +48,11 @@ void beep_flush __ARGS((void));
|
|||||||
void vim_beep __ARGS((void));
|
void vim_beep __ARGS((void));
|
||||||
void init_homedir __ARGS((void));
|
void init_homedir __ARGS((void));
|
||||||
void free_homedir __ARGS((void));
|
void free_homedir __ARGS((void));
|
||||||
void expand_env __ARGS((char_u *src, char_u *dst, int dstlen));
|
|
||||||
void expand_env_esc __ARGS((char_u *srcp, char_u *dst, int dstlen, int esc, char_u *startstr));
|
|
||||||
char_u *vim_getenv __ARGS((char_u *name, int *mustfree));
|
|
||||||
char_u *expand_env_save __ARGS((char_u *src));
|
char_u *expand_env_save __ARGS((char_u *src));
|
||||||
|
char_u *expand_env_save_opt __ARGS((char_u *src, int one));
|
||||||
|
void expand_env __ARGS((char_u *src, char_u *dst, int dstlen));
|
||||||
|
void expand_env_esc __ARGS((char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr));
|
||||||
|
char_u *vim_getenv __ARGS((char_u *name, int *mustfree));
|
||||||
void vim_setenv __ARGS((char_u *name, char_u *val));
|
void vim_setenv __ARGS((char_u *name, char_u *val));
|
||||||
char_u *get_env_name __ARGS((expand_T *xp, int idx));
|
char_u *get_env_name __ARGS((expand_T *xp, int idx));
|
||||||
void home_replace __ARGS((buf_T *buf, char_u *src, char_u *dst, int dstlen, int one));
|
void home_replace __ARGS((buf_T *buf, char_u *src, char_u *dst, int dstlen, int one));
|
||||||
|
@ -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 */
|
||||||
|
/**/
|
||||||
|
123,
|
||||||
/**/
|
/**/
|
||||||
122,
|
122,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user