aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-03-03 21:55:33 +0000
committerRichard M. Stallman2002-03-03 21:55:33 +0000
commitf9e6f049b3a52ac2c483a9499b5406c3dcdb3de4 (patch)
tree0757963241fa3b35c05c41578e37738cd7971698 /src
parent8053add8474e634c327923ad46061fb14bfd1111 (diff)
downloademacs-f9e6f049b3a52ac2c483a9499b5406c3dcdb3de4.tar.gz
emacs-f9e6f049b3a52ac2c483a9499b5406c3dcdb3de4.zip
(Fmake_temp_name): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c6
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
981There is a race condition between calling `make-temp-name' and creating the 981There is a race condition between calling `make-temp-name' and creating the
982file which opens all kinds of security holes. For that reason, you should 982file which opens all kinds of security holes. For that reason, you should
983probably use `make-temp-file' instead. */) 983probably 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{