aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEli Zaretskii2025-03-01 10:01:54 -0500
committerEli Zaretskii2025-03-01 10:01:54 -0500
commitda584ad6fb1b6de72dee895d29ef680f54b76cf5 (patch)
tree6f201b6a1b2d5c733da8960fc683db4baae2ec93 /test
parent4442cd5b7d7ec549a7b0d5839c5595ef64c4693a (diff)
parentb531bbf73ef91aca0a699ffc89e6b93dc49d0151 (diff)
downloademacs-da584ad6fb1b6de72dee895d29ef680f54b76cf5.tar.gz
emacs-da584ad6fb1b6de72dee895d29ef680f54b76cf5.zip
Merge from origin/emacs-30
b531bbf73ef Fix go-ts-mode const_spec highlighting (Bug#76330) bd1d6761f4c ; Document what happens when 'display' and 'invisible' pr... 526eeedf889 keymaps.texi: Move "Changing Key Bindings" section up 7ec6531c7bd keymaps.texi: Move "Key Sequences" section down 8b804011275 Improve process-get/process-put docstrings 73c646b7771 Merge branch 'emacs-30' of git.sv.gnu.org:/srv/git/emacs ... 0af5c574998 Fix recent change in diff-no-select c8cec840d79 Prevent rare freeze on Android 4.2 through 4.4
Diffstat (limited to 'test')
-rw-r--r--test/lisp/progmodes/go-ts-mode-resources/font-lock.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/lisp/progmodes/go-ts-mode-resources/font-lock.go b/test/lisp/progmodes/go-ts-mode-resources/font-lock.go
index 4e7a8e1710b..170bf9353c6 100644
--- a/test/lisp/progmodes/go-ts-mode-resources/font-lock.go
+++ b/test/lisp/progmodes/go-ts-mode-resources/font-lock.go
@@ -3,3 +3,9 @@ for idx, val := range arr {}
3// ^ font-lock-variable-name-face 3// ^ font-lock-variable-name-face
4for idx := 0; idx < n; idx++ {} 4for idx := 0; idx < n; idx++ {}
5// ^ font-lock-variable-name-face 5// ^ font-lock-variable-name-face
6
7const (
8 zero, one = 0, 1
9// ^ font-lock-constant-face
10// ^ font-lock-constant-face
11)