diff options
| author | Colin Walters | 2002-04-29 22:56:39 +0000 |
|---|---|---|
| committer | Colin Walters | 2002-04-29 22:56:39 +0000 |
| commit | b1e905bb0401212456a656a19df994ab7fc0b863 (patch) | |
| tree | 5d9f3c36b785d7e17a59966dd8ba634dac97f4fe | |
| parent | 5a234d251907c97370491089610aaceffc11623f (diff) | |
| download | emacs-b1e905bb0401212456a656a19df994ab7fc0b863.tar.gz emacs-b1e905bb0401212456a656a19df994ab7fc0b863.zip | |
(Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]: Default to
"~/.emacs.d/games".
| -rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index 77d8b40e921..7f4993c9bf7 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1632,7 +1632,7 @@ 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, |