Skip to content

Commit 7c31032

Browse files
Add .cljc to auto-mode-alist.
1 parent a85f190 commit 7c31032

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

5+
### Changes
6+
7+
* Add .cljc to auto-mode-alist.
8+
59
### Bugs fixed
610

711
* Prevent error when calling `indent-for-tab-command` at the start of

clojure-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ Returns a list pair, e.g. (\"defn\" \"abc\") or (\"deftest\" \"some-test\")."
10741074
;;;###autoload
10751075
(progn
10761076
(add-to-list 'auto-mode-alist
1077-
'("\\.\\(clj[sx]?\\|dtm\\|edn\\)\\'" . clojure-mode))
1077+
'("\\.\\(clj[csx]?\\|dtm\\|edn\\)\\'" . clojure-mode))
10781078
;; boot build scripts are Clojure source files
10791079
(add-to-list 'auto-mode-alist '("\\`build.boot\\'" . clojure-mode)))
10801080

0 commit comments

Comments
 (0)