mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0-180
This commit is contained in:
@@ -384,7 +384,7 @@ endif
|
|||||||
" Programming menu
|
" Programming menu
|
||||||
if !exists("g:ctags_command")
|
if !exists("g:ctags_command")
|
||||||
if has("vms")
|
if has("vms")
|
||||||
let g:ctags_command = "mc vim:ctags ."
|
let g:ctags_command = "mc vim:ctags *.*"
|
||||||
else
|
else
|
||||||
let g:ctags_command = "ctags -R ."
|
let g:ctags_command = "ctags -R ."
|
||||||
endif
|
endif
|
||||||
|
@@ -1092,6 +1092,7 @@ extern char_u *all_cflags;
|
|||||||
extern char_u *all_lflags;
|
extern char_u *all_lflags;
|
||||||
# ifdef VMS
|
# ifdef VMS
|
||||||
extern char_u *compiler_version;
|
extern char_u *compiler_version;
|
||||||
|
extern char_u *compiled_arch;
|
||||||
# endif
|
# endif
|
||||||
extern char_u *compiled_user;
|
extern char_u *compiled_user;
|
||||||
extern char_u *compiled_sys;
|
extern char_u *compiled_sys;
|
||||||
|
@@ -3572,8 +3572,9 @@ makeswapname(fname, ffname, buf, dir_name)
|
|||||||
#else
|
#else
|
||||||
(buf->b_p_sn || buf->b_shortname),
|
(buf->b_p_sn || buf->b_shortname),
|
||||||
#endif
|
#endif
|
||||||
#ifdef RISCOS
|
#if defined(VMS) || defined(RISCOS)
|
||||||
/* Avoid problems if fname has special chars, eg <Wimp$Scrap> */
|
/* Avoid problems if fname has special chars, eg <Wimp$Scrap>.
|
||||||
|
* For VMS always use full path for swapfile. */
|
||||||
ffname,
|
ffname,
|
||||||
#else
|
#else
|
||||||
# ifdef HAVE_READLINK
|
# ifdef HAVE_READLINK
|
||||||
|
@@ -2221,7 +2221,6 @@ mch_FullName(fname, buf, len, force)
|
|||||||
* behaviour should be avoided for the existing files and we need to find
|
* behaviour should be avoided for the existing files and we need to find
|
||||||
* the exact path of the edited file.
|
* the exact path of the edited file.
|
||||||
*/
|
*/
|
||||||
if (force || !mch_isFullName(fname))
|
|
||||||
{
|
{
|
||||||
char_u *fixed_fname = vms_fixfilename(fname);
|
char_u *fixed_fname = vms_fixfilename(fname);
|
||||||
int fd = mch_open((char *)fixed_fname, O_RDONLY | O_EXTRA, 0);
|
int fd = mch_open((char *)fixed_fname, O_RDONLY | O_EXTRA, 0);
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
180,
|
||||||
/**/
|
/**/
|
||||||
179,
|
179,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user