]> git.eshelyaron.com Git - emacs.git/commitdiff
(Ffile_attributes) [MSDOS]: Remove special detection of
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 Dec 1995 00:20:53 +0000 (00:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 Dec 1995 00:20:53 +0000 (00:20 +0000)
MS-DOS executable files by filename extension (library `stat' does
this itself now).

src/dired.c

index de93a67adc416e92c8bbc761e1b1c32085e0a696..8e6add1f6e81c4120ea9299d296e237c57b9a985 100644 (file)
@@ -621,22 +621,6 @@ If file does not exist, returns nil.")
   if (lstat (XSTRING (filename)->data, &s) < 0)
     return Qnil;
 
-#ifdef MSDOS
-  {
-    char *tmpnam = XSTRING (Ffile_name_nondirectory (filename))->data;
-    int l = strlen (tmpnam);
-
-    if (l >= 5 
-       && S_ISREG (s.st_mode)
-       && (stricmp (&tmpnam[l - 4], ".com") == 0
-           || stricmp (&tmpnam[l - 4], ".exe") == 0
-           || stricmp (&tmpnam[l - 4], ".bat") == 0))
-      {
-       s.st_mode |= S_IEXEC;
-      }
-  }
-#endif /* MSDOS */
-
   switch (s.st_mode & S_IFMT)
     {
     default: