diff options
| author | Richard M. Stallman | 2002-03-03 21:55:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-03-03 21:55:33 +0000 |
| commit | f9e6f049b3a52ac2c483a9499b5406c3dcdb3de4 (patch) | |
| tree | 0757963241fa3b35c05c41578e37738cd7971698 /src | |
| parent | 8053add8474e634c327923ad46061fb14bfd1111 (diff) | |
| download | emacs-f9e6f049b3a52ac2c483a9499b5406c3dcdb3de4.tar.gz emacs-f9e6f049b3a52ac2c483a9499b5406c3dcdb3de4.zip | |
(Fmake_temp_name): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 894189008d5..d328a2d3636 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -980,7 +980,11 @@ PREFIX should be an absolute file name. | |||
| 980 | 980 | ||
| 981 | There is a race condition between calling `make-temp-name' and creating the | 981 | There is a race condition between calling `make-temp-name' and creating the |
| 982 | file which opens all kinds of security holes. For that reason, you should | 982 | file which opens all kinds of security holes. For that reason, you should |
| 983 | probably use `make-temp-file' instead. */) | 983 | probably use `make-temp-file' instead, except in three circumstances: |
| 984 | |||
| 985 | * If you are creating the file in the user's home directory. | ||
| 986 | * If you are creating a directory rather than an ordinary file. | ||
| 987 | * If you are taking special precautions as `make-temp-file' does. */) | ||
| 984 | (prefix) | 988 | (prefix) |
| 985 | Lisp_Object prefix; | 989 | Lisp_Object prefix; |
| 986 | { | 990 | { |