@@ -203,7 +203,7 @@ git checkout."
203203
204204(defun tree-sitter-langs--get-latest (type )
205205 " Return the latest tags/commits of the language repositories.
206- TYPE should be either `:commits' or `:tags' . If there's no tag, return the
206+ TYPE should be either `:commits' or `:tags' . If there's no tag, return the
207207latest commit."
208208 (require 'magit )
209209 (tree-sitter-langs--map-repos
@@ -235,7 +235,7 @@ latest commit."
235235(defconst tree-sitter-langs--bundle-version " 0.12.178"
236236 " Version of the grammar bundle.
237237This should be bumped whenever a language submodule is updated, which should be
238- infrequent (grammar-only changes). It is different from the version of
238+ infrequent (grammar-only changes). It is different from the version of
239239`tree-sitter-langs' , which can change frequently (when queries change)." )
240240
241241(defconst tree-sitter-langs--bundle-version-file " BUNDLE-VERSION" )
@@ -262,7 +262,7 @@ infrequent (grammar-only changes). It is different from the version of
262262 (typescript))
263263 " Languages that depend on another, thus requiring `npm install'.
264264
265- You can use it as an alist to force install certain dependencies. e.g.,
265+ You can use it as an alist to force install certain dependencies. e.g.,
266266
267267 (cpp (\" tree-sitter-c@0.20.6\" ))
268268
@@ -303,7 +303,7 @@ If VERSION and OS are not spcified, use the defaults of
303303This function requires git and tree-sitter CLI.
304304
305305If the optional arg CLEAN is non-nil, compile from the revision recorded in this
306- project (through git submodules), and clean up afterwards. Otherwise, compile
306+ project (through git submodules), and clean up afterwards. Otherwise, compile
307307from the current state of the grammar repo, without cleanup."
308308 (message " [tree-sitter-langs] Processing %s " lang-symbol)
309309 (unless (executable-find " git" )
@@ -443,7 +443,7 @@ from the current state of the grammar repo, without cleanup."
443443The bundle includes all languages tracked in git submodules.
444444
445445If the optional arg CLEAN is non-nil, compile from the revisions recorded in
446- this project (through git submodules), and clean up afterwards. Otherwise,
446+ this project (through git submodules), and clean up afterwards. Otherwise,
447447compile from the current state of the grammar repos, without cleanup."
448448 (unless (executable-find " tar" )
449449 (error " Could not find tar executable (needed to bundle compiled grammars) " ))
@@ -472,7 +472,7 @@ compile from the current state of the grammar repos, without cleanup."
472472 ; ; Disk names in Windows can confuse tar, so we need this option. BSD
473473 ; ; tar (macOS) doesn't have it, so we don't set it everywhere.
474474 ; ; https://unix.stackexchange.com/questions/13377/tar/13381#13381.
475- (tar-opts ))
475+ (tar-opts nil ))
476476 (with-temp-file tree-sitter-langs--bundle-version-file
477477 (let ((coding-system-for-write 'utf-8 ))
478478 (insert tree-sitter-langs--bundle-version)))
0 commit comments