Skip to content

Commit

Permalink
Merge pull request #79 from bretthoerner/fix-let
Browse files Browse the repository at this point in the history
Fix let paren placement in let form.
  • Loading branch information
rrthomas committed May 23, 2012
2 parents e38e648 + eb912a1 commit c45c5f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coffee-mode.el
Expand Up @@ -180,7 +180,7 @@ called `coffee-compiled-buffer-name'."
nil)
(append coffee-args-compile (list "-s" "-p")))
(switch-to-buffer (get-buffer coffee-compiled-buffer-name))
(let ((buffer-file-name) "tmp.js") (set-auto-mode))
(let ((buffer-file-name "tmp.js")) (set-auto-mode))
(goto-char (point-min)))

(defun coffee-js2coffee-replace-region (start end)
Expand Down

0 comments on commit c45c5f7

Please sign in to comment.