diff options
author | Glenn Morris <rgm@gnu.org> | 2013-02-04 21:06:53 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-02-04 21:06:53 -0500 |
commit | b687d65a02e93fda36a00e90bd016a0f74f9708e (patch) | |
tree | 36a93bd35f90a4da85efdc6a8861621a72bac215 /lisp/play | |
parent | 3505fa027b66c06bf5f86a71f291dbbdead9070e (diff) | |
download | emacs-b687d65a02e93fda36a00e90bd016a0f74f9708e.tar.gz |
Fix indentation in previous
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/gamegrid.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index 91192517f7c..b6fd064ca84 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el @@ -509,10 +509,11 @@ FILE is created there." (unless (file-exists-p (directory-file-name gamegrid-user-score-file-directory)) (make-directory gamegrid-user-score-file-directory t)) - (let ((f (expand-file-name file gamegrid-user-score-file-directory))) - (unless (file-exists-p f) + (let ((f (expand-file-name file + gamegrid-user-score-file-directory))) + (unless (file-exists-p f) (write-region "" nil f nil 'silent nil 'excl)) - (gamegrid-add-score-with-update-game-score-1 file f score)))))) + (gamegrid-add-score-with-update-game-score-1 file f score)))))) (defun gamegrid-add-score-with-update-game-score-1 (file target score) (let ((default-directory "/") |