diff options
| author | Colin Walters | 2002-05-03 20:40:58 +0000 |
|---|---|---|
| committer | Colin Walters | 2002-05-03 20:40:58 +0000 |
| commit | 1e7ce61b8cfd41ba65c3cbf05fbd41047ff05268 (patch) | |
| tree | 004b8fa801bf9b9e9d17646fbee37594290d0804 /src | |
| parent | 43936bf4a5a9c2ec4258f889266774b2c54044b7 (diff) | |
| download | emacs-1e7ce61b8cfd41ba65c3cbf05fbd41047ff05268.tar.gz emacs-1e7ce61b8cfd41ba65c3cbf05fbd41047ff05268.zip | |
(Vgame_score_directory): Renamed to Vshared_game_score_directory.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/callproc.c b/src/callproc.c index 196f8a669ac..1a3ff6fcca9 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -105,7 +105,7 @@ extern char **environ; | |||
| 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; |
| @@ -1626,13 +1626,13 @@ 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, |