aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1999-02-23 22:28:55 +0000
committerKarl Heuer1999-02-23 22:28:55 +0000
commit4cd8344ad3e01ed7985848c44848bed344c8f648 (patch)
tree6077ee759c65d25366af845c0b51641c2fdeba44 /src
parent701b1ec29afc83a41a2250e794b0ec0b4d531633 (diff)
downloademacs-4cd8344ad3e01ed7985848c44848bed344c8f648.tar.gz
emacs-4cd8344ad3e01ed7985848c44848bed344c8f648.zip
(Ffile_regular_p): Undo previous change.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
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.")
3115 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; 3115 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3116 } 3116 }
3117#else 3117#else
3118 if (lstat (XSTRING (absname)->data, &st) < 0) 3118 if (stat (XSTRING (absname)->data, &st) < 0)
3119 return Qnil; 3119 return Qnil;
3120 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; 3120 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3121#endif 3121#endif