diff options
| author | Eli Zaretskii | 2026-04-04 09:56:32 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2026-04-04 09:56:32 +0300 |
| commit | e7751405d024134a0073e0ac47caef2b71418a1b (patch) | |
| tree | 2ecabd103ef5112cfc455a4cc4649897615c6283 /src | |
| parent | a5d6b9099960ad9e45874aac80a5af2384811c5d (diff) | |
| download | emacs-e7751405d024134a0073e0ac47caef2b71418a1b.tar.gz emacs-e7751405d024134a0073e0ac47caef2b71418a1b.zip | |
; Improve documentation of 'make-temp-file'
* doc/lispref/files.texi (Unique File Names):
* lisp/files.el (make-temp-file):
* src/fileio.c (Fmake_temp_file_internal): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c index beb020810be..eb64b59fcf2 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -774,6 +774,9 @@ Do not expand PREFIX; a non-absolute PREFIX is relative to the Emacs | |||
| 774 | working directory. If TEXT is a string, insert it into the newly | 774 | working directory. If TEXT is a string, insert it into the newly |
| 775 | created file. | 775 | created file. |
| 776 | 776 | ||
| 777 | On Posix systems, the file/directory is created with access mode bits | ||
| 778 | that limit access to the current user. | ||
| 779 | |||
| 777 | Signal an error if the file could not be created. | 780 | Signal an error if the file could not be created. |
| 778 | 781 | ||
| 779 | This function does not grok magic file names. */) | 782 | This function does not grok magic file names. */) |