diff options
| author | Lars Hansen | 2005-11-10 11:57:35 +0000 |
|---|---|---|
| committer | Lars Hansen | 2005-11-10 11:57:35 +0000 |
| commit | 19a9c3b741cb254dc74c9f673ce484feb3801fdf (patch) | |
| tree | e6e3d2345d6be76e625f031995ddeb13bc70c3d4 /src/fileio.c | |
| parent | f192689e61bb721206f4f9707942feb8932490a3 (diff) | |
| download | emacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.tar.gz emacs-19a9c3b741cb254dc74c9f673ce484feb3801fdf.zip | |
(file-regular-p): Doc fix.
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 6 |
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 | ||
| 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 | { |