aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjohn muhl2024-02-21 10:14:05 -0600
committerEli Zaretskii2024-02-21 18:45:46 +0200
commit35d99b1ec7c56d4a5c09af36e6bbd7f0f959cccc (patch)
treedf3c198fa9dd4debb40cc8df6f1624c2646bf6ce
parent88abbf00af69cf7e5f36e318e6935f7d1500af7f (diff)
downloademacs-35d99b1ec7c56d4a5c09af36e6bbd7f0f959cccc.tar.gz
emacs-35d99b1ec7c56d4a5c09af36e6bbd7f0f959cccc.zip
; Update URL of the tree-sitter-lua grammar
* admin/notes/tree-sitter/build-module/build.sh: * lisp/progmodes/lua-ts-mode.el: * test/infra/Dockerfile.emba: Use the new URL. (bug#69304)
-rwxr-xr-xadmin/notes/tree-sitter/build-module/build.sh2
-rw-r--r--lisp/progmodes/lua-ts-mode.el4
-rw-r--r--test/infra/Dockerfile.emba2
3 files changed, 4 insertions, 4 deletions
diff --git a/admin/notes/tree-sitter/build-module/build.sh b/admin/notes/tree-sitter/build-module/build.sh
index 969187b7f92..9a567bb094d 100755
--- a/admin/notes/tree-sitter/build-module/build.sh
+++ b/admin/notes/tree-sitter/build-module/build.sh
@@ -43,7 +43,7 @@ case "${lang}" in
43 org="phoenixframework" 43 org="phoenixframework"
44 ;; 44 ;;
45 "lua") 45 "lua")
46 org="MunifTanjim" 46 org="tree-sitter-grammars"
47 ;; 47 ;;
48 "typescript") 48 "typescript")
49 sourcedir="tree-sitter-typescript/typescript/src" 49 sourcedir="tree-sitter-typescript/typescript/src"
diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el
index c7f5ac50b04..8bd3db2b75f 100644
--- a/lisp/progmodes/lua-ts-mode.el
+++ b/lisp/progmodes/lua-ts-mode.el
@@ -26,8 +26,8 @@
26;; This package provides `lua-ts-mode' which is a major mode for Lua 26;; This package provides `lua-ts-mode' which is a major mode for Lua
27;; files that uses Tree Sitter to parse the language. 27;; files that uses Tree Sitter to parse the language.
28;; 28;;
29;; This package is compatible with and tested against the grammar 29;; This package is compatible with and tested against the grammar for
30;; for Lua found at https://github.com/MunifTanjim/tree-sitter-lua 30;; Lua found at https://github.com/tree-sitter-grammars/tree-sitter-lua
31 31
32;;; Code: 32;;; Code:
33 33
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index 8e583fade9f..d79072b06b5 100644
--- a/test/infra/Dockerfile.emba
+++ b/test/infra/Dockerfile.emba
@@ -126,7 +126,7 @@ RUN src/emacs -Q --batch \
126 (java "https://github.com/tree-sitter/tree-sitter-java") \ 126 (java "https://github.com/tree-sitter/tree-sitter-java") \
127 (javascript "https://github.com/tree-sitter/tree-sitter-javascript") \ 127 (javascript "https://github.com/tree-sitter/tree-sitter-javascript") \
128 (json "https://github.com/tree-sitter/tree-sitter-json") \ 128 (json "https://github.com/tree-sitter/tree-sitter-json") \
129 (lua "https://github.com/MunifTanjim/tree-sitter-lua") \ 129 (lua "https://github.com/tree-sitter-grammars/tree-sitter-lua") \
130 (python "https://github.com/tree-sitter/tree-sitter-python") \ 130 (python "https://github.com/tree-sitter/tree-sitter-python") \
131 (ruby "https://github.com/tree-sitter/tree-sitter-ruby") \ 131 (ruby "https://github.com/tree-sitter/tree-sitter-ruby") \
132 (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src") \ 132 (tsx "https://github.com/tree-sitter/tree-sitter-typescript" "master" "tsx/src") \