]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_temp_name) [MSDOS]: Make sure there is at least
authorKarl Heuer <kwzh@gnu.org>
Fri, 16 Feb 1996 00:17:03 +0000 (00:17 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 16 Feb 1996 00:17:03 +0000 (00:17 +0000)
one character before the dot, in case `prefix' is only a directory
name.

src/fileio.c

index f138e6e458e1e67a9864f51bce2110b23b4c7036..6207cb86f7805204584c3ff4dbd3c9a851545d61 100644 (file)
@@ -715,9 +715,9 @@ so there is no danger of generating a name being used by another process.")
 {
   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