diff options
| author | Stefan Monnier | 1999-10-08 21:42:32 +0000 |
|---|---|---|
| committer | Stefan Monnier | 1999-10-08 21:42:32 +0000 |
| commit | a1f973fb9a703a62ca6d6e8ac1a9d89a2cf80a3c (patch) | |
| tree | 33502ebdc235e8e09f4d04751efb4b093b286219 /src | |
| parent | 37e2d8f4b2723b33e7d0bece665de20e1893d92b (diff) | |
| download | emacs-a1f973fb9a703a62ca6d6e8ac1a9d89a2cf80a3c.tar.gz emacs-a1f973fb9a703a62ca6d6e8ac1a9d89a2cf80a3c.zip | |
(Fmake_temp_name): add a ref to `make-temp-file' in the docstring.
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 8d5e32eb426..dfa144a6607 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -846,7 +846,11 @@ so there is no danger of generating a name being used by another process.\n\ | |||
| 846 | \n\ | 846 | \n\ |
| 847 | In addition, this function makes an attempt to choose a name\n\ | 847 | In addition, this function makes an attempt to choose a name\n\ |
| 848 | which has no existing file. To make this work,\n\ | 848 | which has no existing file. To make this work,\n\ |
| 849 | PREFIX should be an absolute file name.") | 849 | PREFIX should be an absolute file name.\n\ |
| 850 | \n\ | ||
| 851 | There is a race condition between calling `make-temp-name' and creating the | ||
| 852 | file which opens all kinds of security holes. For that reason, you should | ||
| 853 | probably use `make-temp-file' instead.") | ||
| 850 | (prefix) | 854 | (prefix) |
| 851 | Lisp_Object prefix; | 855 | Lisp_Object prefix; |
| 852 | { | 856 | { |