From: Lars Hansen Date: Thu, 10 Nov 2005 11:57:35 +0000 (+0000) Subject: (file-regular-p): Doc fix. X-Git-Tag: emacs-pretest-22.0.90~5969 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=19a9c3b741cb254dc74c9f673ce484feb3801fdf;p=emacs.git (file-regular-p): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index af09ba48fcc..bc727bcb6e6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-11-10 Lars Hansen + + * fileio.c (file-regular-p): Doc fix. + 2005-11-10 Kim F. Storm * 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. */) } 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; {