1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

(scm_mkstemp): Update docstring from manual.

This commit is contained in:
Kevin Ryde 2005-01-09 22:23:14 +00:00
parent 7e24129104
commit 2c4cdcb06c

View file

@ -1133,9 +1133,14 @@ SCM_DEFINE (scm_mkstemp, "mkstemp!", 1, 0, 0,
(SCM tmpl),
"Create a new unique file in the file system and returns a new\n"
"buffered port open for reading and writing to the file.\n"
"\n"
"@var{tmpl} is a string specifying where the file should be\n"
"created: it must end with @code{XXXXXX} and will be changed in\n"
"place to return the name of the temporary file.")
"created: it must end with @samp{XXXXXX} and will be changed in\n"
"place to return the name of the temporary file.\n"
"\n"
"The file is created with mode @code{0600}, which means read and\n"
"write for the owner only. @code{chmod} can be used to change\n"
"this.")
#define FUNC_NAME s_scm_mkstemp
{
char *c_tmpl;