changeset 24392:634381209ab5

(Ffile_regular_p): Undo previous change.
author Karl Heuer <kwzh@gnu.org>
date Tue, 23 Feb 1999 22:28:55 +0000
parents 44e1a823dd6b
children fcaabeb8aece
files src/fileio.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/fileio.c	Tue Feb 23 22:23:57 1999 +0000
+++ b/src/fileio.c	Tue Feb 23 22:28:55 1999 +0000
@@ -3115,7 +3115,7 @@
     return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
   }
 #else
-  if (lstat (XSTRING (absname)->data, &st) < 0)
+  if (stat (XSTRING (absname)->data, &st) < 0)
     return Qnil;
   return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
 #endif