From: Richard M. Stallman Date: Tue, 1 Nov 1994 08:24:29 +0000 (+0000) Subject: (MAXNAMLEN) [WINDOWSNT]: Define as 255. X-Git-Tag: emacs-19.34~6063 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6cc1fc1d3da7d2d44e707226c5296926b4b0c5d7;p=emacs.git (MAXNAMLEN) [WINDOWSNT]: Define as 255. --- diff --git a/src/ndir.h b/src/ndir.h index 9fe498361c1..f02dfbd6703 100644 --- a/src/ndir.h +++ b/src/ndir.h @@ -22,7 +22,11 @@ #define MAXNAMLEN (DIR$S_NAME + 7) /* 80 plus room for version #. */ #define MAXFULLSPEC NAM$C_MAXRSS /* Maximum full spec */ #else +#ifdef WINDOWSNT +#define MAXNAMLEN 255 +#else /* not WINDOWSNT */ #define MAXNAMLEN 15 /* maximum filename length */ +#endif /* not WINDOWSNT */ #endif /* VMS */ /* NOTE: MAXNAMLEN must be one less than a multiple of 4 */