comparison src/callproc.c @ 45092:7f1d09693ef3

(Vgame_score_directory): Renamed to Vshared_game_score_directory.
author Colin Walters <walters@gnu.org>
date Fri, 03 May 2002 20:40:58 +0000
parents f1eb7c3e1e04
children 1f38d08f324b
comparison
equal deleted inserted replaced
45091:68ecbc3a6c90 45092:7f1d09693ef3
103 #endif 103 #endif
104 #endif 104 #endif
105 105
106 Lisp_Object Vexec_path, Vexec_directory, Vexec_suffixes; 106 Lisp_Object Vexec_path, Vexec_directory, Vexec_suffixes;
107 Lisp_Object Vdata_directory, Vdoc_directory; 107 Lisp_Object Vdata_directory, Vdoc_directory;
108 Lisp_Object Vconfigure_info_directory, Vgame_score_directory; 108 Lisp_Object Vconfigure_info_directory, Vshared_game_score_directory;
109 Lisp_Object Vtemp_file_name_pattern; 109 Lisp_Object Vtemp_file_name_pattern;
110 110
111 Lisp_Object Vshell_file_name; 111 Lisp_Object Vshell_file_name;
112 112
113 Lisp_Object Vprocess_environment; 113 Lisp_Object Vprocess_environment;
1624 This is the name of the directory in which the build procedure installed 1624 This is the name of the directory in which the build procedure installed
1625 Emacs's info files; the default value for Info-default-directory-list 1625 Emacs's info files; the default value for Info-default-directory-list
1626 includes this. */); 1626 includes this. */);
1627 Vconfigure_info_directory = build_string (PATH_INFO); 1627 Vconfigure_info_directory = build_string (PATH_INFO);
1628 1628
1629 DEFVAR_LISP ("game-score-directory", &Vgame_score_directory, 1629 DEFVAR_LISP ("shared-game-score-directory", &Vshared_game_score_directory,
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 Vshared_game_score_directory = build_string(HAVE_SHARED_GAME_DIR);
1634 #else 1634 #else
1635 Vgame_score_directory = build_string("~/.emacs.d/games"); 1635 Vshared_game_score_directory = Qnil;
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'. */);