Skip to content

Commit

Permalink
Merge pull request #112 from thomasf/auto-mode-regexp
Browse files Browse the repository at this point in the history
fix auto-mode regular expressions
  • Loading branch information
telaviv committed Jan 12, 2013
2 parents 36962f9 + 2e68bfb commit 6449f14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions coffee-mode.el
Expand Up @@ -906,9 +906,9 @@ it on by default."

;; Run coffee-mode for files ending in .coffee.
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.coffee$" . coffee-mode))
(add-to-list 'auto-mode-alist '("\\.coffee\\'" . coffee-mode))
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.iced$" . coffee-mode))
(add-to-list 'auto-mode-alist '("\\.iced\\'" . coffee-mode))
;;;###autoload
(add-to-list 'auto-mode-alist '("Cakefile" . coffee-mode))
(add-to-list 'auto-mode-alist '("Cakefile\\'" . coffee-mode))
;;; coffee-mode.el ends here

0 comments on commit 6449f14

Please sign in to comment.