Skip to content

Commit

Permalink
fixed bad parens
Browse files Browse the repository at this point in the history
  • Loading branch information
sroccaserra committed Mar 23, 2010
1 parent 7b2dcd5 commit 1e6f19d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coding-dojo.el
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
(when (dojo-project-exists project)
(if (y-or-n-p "Project %s in language %s already exists, delete it?")
(dired-delete-file (dojo-project-dir-for project) 'always)
(error "Project %s in language %s already exists." project-name language))
(error "Project %s in language %s already exists." project-name language)))
(dojo-create-project project)
(dojo-substitute-variables project)
(let ((main-file (dojo-find-main-file project)))
Expand All @@ -141,6 +141,6 @@
(shell-command *dojo-after-new-project-command*)
(kill-buffer)))
(find-file (dojo-project-file main-file project-name))
(find-file (dojo-find-test-file project))))))
(find-file (dojo-find-test-file project)))))

(provide 'coding-dojo)

0 comments on commit 1e6f19d

Please sign in to comment.