comparison src/callproc.c @ 44992:1ed68fd25957

(Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]: Default to "~/.emacs.d/games".
author Colin Walters <walters@gnu.org>
date Mon, 29 Apr 2002 22:56:39 +0000
parents 01b93e5e53a7
children f1eb7c3e1e04
comparison
equal deleted inserted replaced
44991:4d3e183415ca 44992:1ed68fd25957
1630 doc: /* Directory of score files for games which come with GNU Emacs. 1630 doc: /* Directory of score files for games which come with GNU Emacs.
1631 If this variable is nil, then Emacs is unable to use a shared directory. */); 1631 If this variable is nil, then Emacs is unable to use a shared directory. */);
1632 #ifdef HAVE_SHARED_GAME_DIR 1632 #ifdef HAVE_SHARED_GAME_DIR
1633 Vgame_score_directory = build_string(HAVE_SHARED_GAME_DIR); 1633 Vgame_score_directory = build_string(HAVE_SHARED_GAME_DIR);
1634 #else 1634 #else
1635 Vgame_score_directory = Qnil; 1635 Vgame_score_directory = build_string("~/.emacs.d/games");
1636 #endif 1636 #endif
1637 1637
1638 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern, 1638 DEFVAR_LISP ("temp-file-name-pattern", &Vtemp_file_name_pattern,
1639 doc: /* Pattern for making names for temporary files. 1639 doc: /* Pattern for making names for temporary files.
1640 This is used by `call-process-region'. */); 1640 This is used by `call-process-region'. */);