diff src/fileio.c @ 14571:1f051824c020

(Fmake_temp_name) [MSDOS]: Make sure there is at least one character before the dot, in case `prefix' is only a directory name.
author Karl Heuer <kwzh@gnu.org>
date Fri, 16 Feb 1996 00:17:03 +0000
parents 7efdb933356e
children 051d6225ca90
line wrap: on
line diff
--- a/src/fileio.c	Fri Feb 16 00:12:27 1996 +0000
+++ b/src/fileio.c	Fri Feb 16 00:17:03 1996 +0000
@@ -715,9 +715,9 @@
 {
   Lisp_Object val;
 #ifdef MSDOS
-  /* Don't use too much characters of the restricted 8+3 DOS
+  /* Don't use too many characters of the restricted 8+3 DOS
      filename space.  */
-  val = concat2 (prefix, build_string (".XXX"));
+  val = concat2 (prefix, build_string ("a.XXX"));
 #else
   val = concat2 (prefix, build_string ("XXXXXX"));
 #endif