aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-22 06:14:20 +0000
committerRichard M. Stallman1997-08-22 06:14:20 +0000
commit41886f350b77aad07fb6d42053dda192764bb31c (patch)
treee081b118331e56ff650b222e00a7dd8e594111d9 /src
parent584b81041669d040a23cd7cd9c73421c8b59d210 (diff)
downloademacs-41886f350b77aad07fb6d42053dda192764bb31c.tar.gz
emacs-41886f350b77aad07fb6d42053dda192764bb31c.zip
(Fmake_temp_name): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 3d747581395..2a9f3dcb444 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -761,7 +761,9 @@ it returns a file name such as \"[X]Y.DIR.1\".")
761DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0, 761DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
762 "Generate temporary file name (string) starting with PREFIX (a string).\n\ 762 "Generate temporary file name (string) starting with PREFIX (a string).\n\
763The Emacs process number forms part of the result,\n\ 763The Emacs process number forms part of the result,\n\
764so there is no danger of generating a name being used by another process.") 764so there is no danger of generating a name being used by another process.\n\
765In addition, this function makes an attempt to choose a name\n\
766which has no existing file.")
765 (prefix) 767 (prefix)
766 Lisp_Object prefix; 768 Lisp_Object prefix;
767{ 769{