diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 6 |
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 @@ | |||
| 1 | 2005-11-10 Lars Hansen <larsh@soem.dk> | ||
| 2 | |||
| 3 | * fileio.c (file-regular-p): Doc fix. | ||
| 4 | |||
| 1 | 2005-11-10 Kim F. Storm <storm@cua.dk> | 5 | 2005-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 | ||
| 3394 | DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, | 3394 | DEFUN ("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. |
| 3396 | This is the sort of file that holds an ordinary stream of data bytes. */) | 3396 | This is the sort of file that holds an ordinary stream of data bytes. |
| 3397 | Symbolic links to regular files count as regular files. | ||
| 3398 | See `file-symlink-p' to distinguish symlinks. */) | ||
| 3397 | (filename) | 3399 | (filename) |
| 3398 | Lisp_Object filename; | 3400 | Lisp_Object filename; |
| 3399 | { | 3401 | { |