changeset 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 ca1ee2b8394e
children c64371c0dbb9
files src/fileio.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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