diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:05:37 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:05:37 +0000 |
commit | 23afd1c8b6811891bccc193813f9bc65855adba0 (patch) | |
tree | 6429a7b57b37364206824f8b58866ec429720fcb | |
parent | 70fe488c383df3b1d69bea21f49d2148e5d2390d (diff) | |
download | emacs-23afd1c8b6811891bccc193813f9bc65855adba0.tar.gz |
(gamegrid-user-score-file-directory): Use user-emacs-directory.
-rw-r--r-- | lisp/play/gamegrid.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index a5689e6f0ea..0c49d81ec06 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el @@ -66,7 +66,8 @@ (defvar gamegrid-score-file-length 50 "Number of high scores to keep") -(defvar gamegrid-user-score-file-directory "~/.emacs.d/games" +(defvar gamegrid-user-score-file-directory + (concat user-emacs-directory "games") "A directory for game scores which can't be shared. If Emacs was built without support for shared game scores, then this directory will be used.") |