File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
;; -*- mode: eask; lexical-binding: t -*-
2
2
3
3
(package "tree-sitter-langs"
4
- "0.12.165 "
4
+ "0.12.276 "
5
5
"Grammar bundle for tree-sitter")
6
6
7
7
(website-url "https://github.com/emacs-tree-sitter/tree-sitter-langs")
Original file line number Diff line number Diff line change @@ -566,8 +566,8 @@ non-nil."
566
566
tree-sitter-langs--os
567
567
nil ))
568
568
(let* ((bin-dir (tree-sitter-langs--bin-dir))
569
- (_ (unless (unless ( file-directory-p bin-dir)
570
- (make-directory bin-dir) )))
569
+ (_ (unless (file-directory-p bin-dir)
570
+ (make-directory bin-dir)))
571
571
(version (or version tree-sitter-langs--bundle-version))
572
572
(default-directory bin-dir)
573
573
(bundle-file (tree-sitter-langs--bundle-file " .gz" version os))
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ Return nil if there are no bundled patterns."
278
278
('tsx '(ecma typescript))
279
279
(_ nil ))))
280
280
(when mode
281
- (ignore-error ' file-missing
281
+ (ignore-error file-missing
282
282
(insert-file-contents (tree-sitter-langs--hl-query-path sym mode))
283
283
(goto-char (point-max ))
284
284
(insert " \n " )))
You can’t perform that action at this time.
0 commit comments