]> git.eshelyaron.com Git - emacs.git/commitdiff
(file-regular-p): Doc fix.
authorLars Hansen <larsh@soem.dk>
Thu, 10 Nov 2005 11:57:35 +0000 (11:57 +0000)
committerLars Hansen <larsh@soem.dk>
Thu, 10 Nov 2005 11:57:35 +0000 (11:57 +0000)
src/ChangeLog
src/fileio.c

index af09ba48fcc29ac480728f33fc71a66b5ac31c97..bc727bcb6e67b4e6d22b0f1ca6cf74ae851b2ae3 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-10  Lars Hansen <larsh@soem.dk>
+
+       * fileio.c (file-regular-p): Doc fix.
+
 2005-11-10  Kim F. Storm  <storm@cua.dk>
 
        * alloc.c (valid_lisp_object_p): New function to validate that
index 4ad325f71ef951a3085c5132b81a5c0a0da4cafd..20e19255da8ee876b39cda4e500698e3b8fbcf24 100644 (file)
@@ -3392,8 +3392,10 @@ searchable directory.  */)
 }
 
 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
-       doc: /* Return t if file FILENAME is the name of a regular file.
-This is the sort of file that holds an ordinary stream of data bytes.  */)
+       doc: /* Return t if FILENAME names a regular file.
+This is the sort of file that holds an ordinary stream of data bytes.
+Symbolic links to regular files count as regular files.
+See `file-symlink-p' to distinguish symlinks.  */)
      (filename)
      Lisp_Object filename;
 {