Skip to content

Commit 3717e44

Browse files
dakrabbatsov
authored andcommitted
Fix interpreter-mode-alist for nbb
add-to-list only takes 1 element that it adds to a list. The second parameter means APPEND when it's non-nil.
1 parent a70c5fc commit 3717e44

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

clojure-mode.el

+2-3
Original file line numberDiff line numberDiff line change
@@ -3220,10 +3220,9 @@ With universal argument \\[universal-argument], act on the \"top-level\" form."
32203220
;; boot build scripts are Clojure source files
32213221
(add-to-list 'auto-mode-alist '("\\(?:build\\|profile\\)\\.boot\\'" . clojure-mode))
32223222
;; babashka scripts are Clojure source files
3223+
(add-to-list 'interpreter-mode-alist '("bb" . clojure-mode))
32233224
;; nbb scripts are ClojureScript source files
3224-
(add-to-list 'interpreter-mode-alist
3225-
'("bb" . clojure-mode)
3226-
'("nbb" . clojurescript-mode)))
3225+
(add-to-list 'interpreter-mode-alist '("nbb" . clojurescript-mode)))
32273226

32283227
(provide 'clojure-mode)
32293228

0 commit comments

Comments
 (0)