diff options
| author | Stefan Kangas | 2019-06-28 02:08:14 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-06-29 10:37:26 +0300 |
| commit | 316f5a3b717d727d46c15da46471e196bfea9a36 (patch) | |
| tree | 03464b98992a5a2794cf02fa4ea10211ceefa5fa /src | |
| parent | bfc7c6e0d3d37e907936d519438413d4b6d01b98 (diff) | |
| download | emacs-316f5a3b717d727d46c15da46471e196bfea9a36.tar.gz emacs-316f5a3b717d727d46c15da46471e196bfea9a36.zip | |
Fix typo in doc string of file-exists-p (bug#36408)
* src/fileio.c (Ffile_exists_p): Fix typo in doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 47619c0b7cd..a648f50dcc1 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2541,7 +2541,7 @@ On Unix, absolute file names start with `/'. */) | |||
| 2541 | } | 2541 | } |
| 2542 | 2542 | ||
| 2543 | DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, | 2543 | DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, |
| 2544 | doc: /* Return t if file FILENAME exists (whether or not you can read it.) | 2544 | doc: /* Return t if file FILENAME exists (whether or not you can read it). |
| 2545 | See also `file-readable-p' and `file-attributes'. | 2545 | See also `file-readable-p' and `file-attributes'. |
| 2546 | This returns nil for a symlink to a nonexistent file. | 2546 | This returns nil for a symlink to a nonexistent file. |
| 2547 | Use `file-symlink-p' to test for such links. */) | 2547 | Use `file-symlink-p' to test for such links. */) |