diff options
| author | Glenn Morris | 2014-05-10 19:30:57 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-05-10 19:30:57 -0700 |
| commit | 970fd40117f1af062578da2432fafa267893f838 (patch) | |
| tree | 992f9de9512032940bcba4e7582e3f1fe93a0812 /src | |
| parent | 0add0959909b850c862a2b7bd59768c200147f56 (diff) | |
| download | emacs-970fd40117f1af062578da2432fafa267893f838.tar.gz emacs-970fd40117f1af062578da2432fafa267893f838.zip | |
* src/fileio.c (Ffile_executable_p): Doc tweak.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9c5f2e90589..2283677a448 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-05-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * fileio.c (Ffile_executable_p): Doc tweak. | ||
| 4 | |||
| 1 | 2014-05-10 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2014-05-10 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * xsettings.c (init_gsettings): Use g_settings_schema_source_lookup | 7 | * xsettings.c (init_gsettings): Use g_settings_schema_source_lookup |
diff --git a/src/fileio.c b/src/fileio.c index 8aaed3248a7..03519eda68d 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2546,7 +2546,9 @@ Use `file-symlink-p' to test for such links. */) | |||
| 2546 | 2546 | ||
| 2547 | DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, | 2547 | DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, |
| 2548 | doc: /* Return t if FILENAME can be executed by you. | 2548 | doc: /* Return t if FILENAME can be executed by you. |
| 2549 | For a directory, this means you can access files in that directory. */) | 2549 | For a directory, this means you can access files in that directory. |
| 2550 | \(It is generally better to use `file-accessible-directory-p' for that | ||
| 2551 | purpose, though.) */) | ||
| 2550 | (Lisp_Object filename) | 2552 | (Lisp_Object filename) |
| 2551 | { | 2553 | { |
| 2552 | Lisp_Object absname; | 2554 | Lisp_Object absname; |