Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3a3bfb18
Commit
3a3bfb18
authored
Feb 08, 1996
by
Richard M. Stallman
Browse files
(Fmake_temp_name) [MS-DOS]: Allow upto 8 characters in
the prefix of the temporary file name.
parent
be047262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/fileio.c
src/fileio.c
+6
-0
No files found.
src/fileio.c
View file @
3a3bfb18
...
...
@@ -714,7 +714,13 @@ so there is no danger of generating a name being used by another process.")
Lisp_Object
prefix
;
{
Lisp_Object
val
;
#ifdef MSDOS
/* Don't use too much characters of the restricted 8+3 DOS
filename space. */
val
=
concat2
(
prefix
,
build_string
(
".XXX"
));
#else
val
=
concat2
(
prefix
,
build_string
(
"XXXXXX"
));
#endif
mktemp
(
XSTRING
(
val
)
->
data
);
return
val
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment