From: Karl Heuer Date: Tue, 23 Feb 1999 22:28:55 +0000 (+0000) Subject: (Ffile_regular_p): Undo previous change. X-Git-Tag: emacs-20.4~557 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4cd8344ad3e01ed7985848c44848bed344c8f648;p=emacs.git (Ffile_regular_p): Undo previous change. --- diff --git a/src/fileio.c b/src/fileio.c index 7a8a5c92322..f063c956c01 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3115,7 +3115,7 @@ This is the sort of file that holds an ordinary stream of data bytes.") 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