{-1, "Unknown!", FALSE}
};
+ int
+mch_chdir(path)
+ char *path;
+{
+ if (p_verbose >= 5)
+ {
+ verbose_enter();
+ smsg((char_u *)"chdir(%s)", path);
+ verbose_leave();
+ }
+# ifdef VMS
+ return chdir(vms_fixfilename(path));
+# else
+ return chdir(path);
+# endif
+}
+
/*
* Write s[len] to the screen.
*/
#ifdef HAVE_FCHDIR
if (fd >= 0)
{
+ if (p_verbose >= 5)
+ {
+ verbose_enter();
+ MSG("fchdir() to previous dir");
+ verbose_leave();
+ }
l = fchdir(fd);
close(fd);
}
# else
int mch_rename __ARGS((const char *src, const char *dest));
# endif
-# ifdef VMS
-# define mch_chdir(s) chdir(vms_fixfilename(s))
-# else
-# define mch_chdir(s) chdir(s)
-# endif
# ifndef VMS
# ifdef __MVS__
/* on OS390 Unix getenv() doesn't return a pointer to persistent
/* os_unix.c */
+int mch_chdir __ARGS((char *path));
void mch_write __ARGS((char_u *s, int len));
int mch_inchar __ARGS((char_u *buf, int maxlen, long wtime, int tb_change_cnt));
int mch_char_avail __ARGS((void));
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 232,
/**/
231,
/**/