aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorLars Hansen2005-11-10 11:57:35 +0000
committerLars Hansen2005-11-10 11:57:35 +0000
commit19a9c3b741cb254dc74c9f673ce484feb3801fdf (patch)
treee6e3d2345d6be76e625f031995ddeb13bc70c3d4 /src/fileio.c
parentf192689e61bb721206f4f9707942feb8932490a3 (diff)
downloademacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.tar.gz
emacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.zip
(file-regular-p): Doc fix.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 4ad325f71ef..20e19255da8 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3392,8 +3392,10 @@ searchable directory. */)
3392} 3392}
3393 3393
3394DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, 3394DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
3395 doc: /* Return t if file FILENAME is the name of a regular file. 3395 doc: /* Return t if FILENAME names a regular file.
3396This is the sort of file that holds an ordinary stream of data bytes. */) 3396This is the sort of file that holds an ordinary stream of data bytes.
3397Symbolic links to regular files count as regular files.
3398See `file-symlink-p' to distinguish symlinks. */)
3397 (filename) 3399 (filename)
3398 Lisp_Object filename; 3400 Lisp_Object filename;
3399{ 3401{