X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/3d9f5ce2fa60e5f09373158c66506ed4f94e992f..d562f8abe78b39316a84c6dc5d96de858b7331f4:/src/ndir.h diff --git a/src/ndir.h b/src/ndir.h index 9fe498361c..bcf52c902f 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 */ @@ -49,3 +53,6 @@ extern void seekdir(); extern void closedir(); #define rewinddir( dirp ) seekdir( dirp, 0L ) + +/* arch-tag: aea50570-ffb7-43fd-b423-7743b10fbe6e + (do not change this comment) */