]> git.eshelyaron.com Git - emacs.git/commitdiff
Document make-temp-name magic limitations
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 8 Aug 2017 16:49:40 +0000 (09:49 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 8 Aug 2017 16:50:15 +0000 (09:50 -0700)
* doc/lispref/files.texi (Unique File Names):
* src/fileio.c (Fmake_temp_name): Document that make-temp-name
does not guarantee uniqueness on magic file names.

doc/lispref/files.texi
src/fileio.c

index 2b692dbf6800f9f55dca86e37333f6afe60a52af..d3f40a7c0c02c58300132d03d6ba9224c21ae627 100644 (file)
@@ -2547,13 +2547,14 @@ should compute the directory like this:
 @end defopt
 
 @defun make-temp-name base-name
-This function generates a string that can be used as a unique file
+This function generates a string that might be a unique file
 name.  The name starts with @var{base-name}, and has several random
 characters appended to it, which are different in each Emacs job.  It
 is like @code{make-temp-file} except that (i) it just constructs a
-name, and does not create a file, and (ii) @var{base-name} should be
-an absolute file name (on MS-DOS, this function can truncate
-@var{base-name} to fit into the 8+3 file-name limits).
+name and does not create a file, (ii) @var{base-name} should be an
+absolute file name that is not magic, and (iii) if the returned file
+name is magic, it might name an existing file.  @xref{Magic File
+Names}.
 
 @strong{Warning:} In most cases, you should not use this function; use
 @code{make-temp-file} instead!  This function is susceptible to a race
index db760d9b22d06a4264a2aed1b65ff14ea942bab1..15845e391448a4c95ff386e802f562661ca650a7 100644 (file)
@@ -757,7 +757,8 @@ danger of generating a name being used by another Emacs process
 \(so long as only a single host can access the containing directory...).
 
 This function tries to choose a name that has no existing file.
-For this to work, PREFIX should be an absolute file name.
+For this to work, PREFIX should be an absolute file name, and PREFIX
+and the returned string should both be non-magic.
 
 There is a race condition between calling `make-temp-name' and creating the
 file, which opens all kinds of security holes.  For that reason, you should