]> code.delx.au - gnu-emacs/commitdiff
(init_callproc) [DOS_NT]: Initialize Vshared_game_score_directory to nil.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 22 Jul 2002 20:05:37 +0000 (20:05 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 22 Jul 2002 20:05:37 +0000 (20:05 +0000)
(syms_of_callproc) [DOS_NT]: Likewise.

src/callproc.c

index 4e44b9748041342bce5e2619b330a034637bd526..5476be065370c433388c48270702dc17f027dc7a 100644 (file)
@@ -1581,9 +1581,13 @@ init_callproc ()
     Vtemp_file_name_pattern = build_string ("/tmp/emacsXXXXXX");
 #endif
 
+#ifdef DOS_NT
+  Vshared_game_score_directory = Qnil;
+#else
   Vshared_game_score_directory = build_string (PATH_GAME);
   if (NILP (Ffile_directory_p (Vshared_game_score_directory)))
     Vshared_game_score_directory = Qnil;
+#endif
 }
 
 void
@@ -1644,7 +1648,11 @@ includes this.  */);
   DEFVAR_LISP ("shared-game-score-directory", &Vshared_game_score_directory,
               doc: /* Directory of score files for games which come with GNU Emacs.
 If this variable is nil, then Emacs is unable to use a shared directory.  */);
+#ifdef DOS_NT
+  Vshared_game_score_directory = Qnil;
+#else
   Vshared_game_score_directory = build_string (PATH_GAME);
+#endif
 
   DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
               doc: /* Pattern for making names for temporary files.