summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-01-09 14:09:25 +0000
committerBram Moolenaar <Bram@vim.org>2007-01-09 14:09:25 +0000
commitd675e2c5130849cb486665b097b62bbb00cc42e7 (patch)
tree62e4dbad27b803f2dd0c8c66e63cb2439c399857
parentdf88dda91c2f436f4cf2360d27a306efc0087e4f (diff)
updated for version 7.0-180v7.0.180
-rw-r--r--runtime/menu.vim2
-rw-r--r--src/globals.h1
-rw-r--r--src/memline.c5
-rw-r--r--src/os_unix.c1
-rw-r--r--src/version.c2
5 files changed, 7 insertions, 4 deletions
diff --git a/runtime/menu.vim b/runtime/menu.vim
index 2334794760..2f3cd3df5b 100644
--- a/runtime/menu.vim
+++ b/runtime/menu.vim
@@ -384,7 +384,7 @@ endif
" Programming menu
if !exists("g:ctags_command")
if has("vms")
- let g:ctags_command = "mc vim:ctags ."
+ let g:ctags_command = "mc vim:ctags *.*"
else
let g:ctags_command = "ctags -R ."
endif
diff --git a/src/globals.h b/src/globals.h
index 5d7295a843..a7cc1716fb 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1092,6 +1092,7 @@ extern char_u *all_cflags;
extern char_u *all_lflags;
# ifdef VMS
extern char_u *compiler_version;
+extern char_u *compiled_arch;
# endif
extern char_u *compiled_user;
extern char_u *compiled_sys;
diff --git a/src/memline.c b/src/memline.c
index ea7d0e13b2..b8d13d942d 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -3572,8 +3572,9 @@ makeswapname(fname, ffname, buf, dir_name)
#else
(buf->b_p_sn || buf->b_shortname),
#endif
-#ifdef RISCOS
- /* Avoid problems if fname has special chars, eg <Wimp$Scrap> */
+#if defined(VMS) || defined(RISCOS)
+ /* Avoid problems if fname has special chars, eg <Wimp$Scrap>.
+ * For VMS always use full path for swapfile. */
ffname,
#else
# ifdef HAVE_READLINK
diff --git a/src/os_unix.c b/src/os_unix.c
index d58ba302c9..639ef31276 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -2221,7 +2221,6 @@ mch_FullName(fname, buf, len, force)
* behaviour should be avoided for the existing files and we need to find
* the exact path of the edited file.
*/
- if (force || !mch_isFullName(fname))
{
char_u *fixed_fname = vms_fixfilename(fname);
int fd = mch_open((char *)fixed_fname, O_RDONLY | O_EXTRA, 0);
diff --git a/src/version.c b/src/version.c
index e636520e1e..05e088f97d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 180,
+/**/
179,
/**/
178,