diff options
| author | Paul Eggert | 2017-08-26 13:44:41 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-08-26 13:45:25 -0700 |
| commit | 0becd64d6320b68911cc84615650a84c021b12e3 (patch) | |
| tree | 12e96fa15c8283a8c6bd415fbc0198e8ec9fec89 /src | |
| parent | cc7530cae09b0aa4d648d92ca0f82c81439a6b34 (diff) | |
| download | emacs-0becd64d6320b68911cc84615650a84c021b12e3.tar.gz emacs-0becd64d6320b68911cc84615650a84c021b12e3.zip | |
Improve doc for file-name-absolute-p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 76ea7da0e81..fa694249cb7 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2470,8 +2470,8 @@ This happens for interactive use with M-x. */) | |||
| 2470 | 2470 | ||
| 2471 | DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | 2471 | DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, |
| 2472 | 1, 1, 0, | 2472 | 1, 1, 0, |
| 2473 | doc: /* Return t if file FILENAME specifies an absolute file name. | 2473 | doc: /* Return t if FILENAME is an absolute file name or starts with `~'. |
| 2474 | On Unix, this is a name starting with a `/' or a `~'. */) | 2474 | On Unix, absolute file names start with `/'. */) |
| 2475 | (Lisp_Object filename) | 2475 | (Lisp_Object filename) |
| 2476 | { | 2476 | { |
| 2477 | CHECK_STRING (filename); | 2477 | CHECK_STRING (filename); |