aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parentf192689e61bb721206f4f9707942feb8932490a3 (diff)
downloademacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.tar.gz
emacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.zip
(file-regular-p): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index af09ba48fcc..bc727bcb6e6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-11-10 Lars Hansen <larsh@soem.dk>
2
3 * fileio.c (file-regular-p): Doc fix.
4
12005-11-10 Kim F. Storm <storm@cua.dk> 52005-11-10 Kim F. Storm <storm@cua.dk>
2 6
3 * alloc.c (valid_lisp_object_p): New function to validate that 7 * alloc.c (valid_lisp_object_p): New function to validate that
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{