* bug#67135: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings
@ 2023-11-12 19:45 Noah Peart
2023-11-12 22:26 ` jm--- via Bug reports for GNU Emacs, the Swiss army knife of text editors
0 siblings, 1 reply; 3+ messages in thread
From: Noah Peart @ 2023-11-12 19:45 UTC (permalink / raw)
To: 67135
[-- Attachment #1.1: Type: text/plain, Size: 980 bytes --]
Tags: patch
* lisp/progmodes/lua-ts-mode.el
(lua-ts-mode--font-lock-settings): fix font-locking for string escapes
Bug: Strings aren't fontified when they have escape sequences in them.
Recipe to reproduce:
In a `lua-ts-mode` buffer, with `treesit-font-lock-level` set to 4 to
include escapes,
"foo\nbar"
font-locks '\n' but not "foo" or "bar".
In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version
3.24.33, cairo version 1.16.0) of 2023-11-05 built on noah-X580VD
Repository revision: b819b8d6e90337b4cb36b35c2c6d0112c90a8e24
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12101004
System Description: Ubuntu 22.04.3 LTS
Configured using:
'configure --prefix=/usr/local --with-modules --with-tree-sitter
--with-threads --with-x-toolkit=gtk3 --with-xwidgets --with-gnutls
--with-json --with-mailutils --with-jpeg --with-png --with-rsvg
--with-tiff --with-xml2 --with-xpm --with-imagemagick CC=gcc-12
CXX=gcc-12'
[-- Attachment #1.2: Type: text/html, Size: 1148 bytes --]
[-- Attachment #2: lua-ts-string-escapes.patch --]
[-- Type: text/x-patch, Size: 1092 bytes --]
From 34cfb93992fc07d6dc1d2d9cb27e4d2b264cbcfb Mon Sep 17 00:00:00 2001
From: nverno <noah.v.peart@gmail.com>
Date: Sun, 12 Nov 2023 11:36:09 -0800
Subject: [PATCH] Fix font-lock for string escapes in
lua-ts--font-lock-settings
---
lisp/progmodes/lua-ts-mode.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el
index 2193779b759..bb6d5cb8c91 100644
--- a/lisp/progmodes/lua-ts-mode.el
+++ b/lisp/progmodes/lua-ts-mode.el
@@ -148,10 +148,6 @@ lua-ts--font-lock-settings
:feature 'delimiter
'(["," ";"] @font-lock-delimiter-face)
- :language 'lua
- :feature 'escape
- '((escape_sequence) @font-lock-escape-face)
-
:language 'lua
:feature 'constant
'((variable_list
@@ -213,6 +209,11 @@ lua-ts--font-lock-settings
:feature 'string
'((string) @font-lock-string-face)
+ :language 'lua
+ :feature 'escape
+ :override t
+ '((escape_sequence) @font-lock-escape-face)
+
:language 'lua
:feature 'comment
'((comment) @font-lock-comment-face
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#67135: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings
2023-11-12 19:45 bug#67135: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings Noah Peart
@ 2023-11-12 22:26 ` jm--- via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-11-15 13:08 ` Eli Zaretskii
0 siblings, 1 reply; 3+ messages in thread
From: jm--- via Bug reports for GNU Emacs, the Swiss army knife of text editors @ 2023-11-12 22:26 UTC (permalink / raw)
To: noah.v.peart, 67135
[-- Attachment #1: Type: text/plain, Size: 1245 bytes --]
November 12, 2023 at 7:45 PM, "Noah Peart" <noah.v.peart@gmail.com> wrote:
>
> Tags: patch
>
> * lisp/progmodes/lua-ts-mode.el
> (lua-ts-mode--font-lock-settings): fix font-locking for string escapes
>
> Bug: Strings aren't fontified when they have escape sequences in them.
>
> Recipe to reproduce:
> In a `lua-ts-mode` buffer, with `treesit-font-lock-level` set to 4 to
> include escapes,
>
> "foo\nbar"
>
> font-locks '\n' but not "foo" or "bar".
>
> In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version
> 3.24.33, cairo version 1.16.0) of 2023-11-05 built on noah-X580VD
> Repository revision: b819b8d6e90337b4cb36b35c2c6d0112c90a8e24
> Repository branch: master
> Windowing system distributor 'The X.Org Foundation', version 11.0.12101004
> System Description: Ubuntu 22.04.3 LTS
>
> Configured using:
> 'configure --prefix=/usr/local --with-modules --with-tree-sitter
> --with-threads --with-x-toolkit=gtk3 --with-xwidgets --with-gnutls
> --with-json --with-mailutils --with-jpeg --with-png --with-rsvg
> --with-tiff --with-xml2 --with-xpm --with-imagemagick CC=gcc-12
> CXX=gcc-12'
Thanks.
I updated the commit message to include the bug number and
match the format used in Emacs.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-font-lock-for-string-escapes-in-lua-ts-mode.patch --]
[-- Type: text/x-diff; name="0001-Fix-font-lock-for-string-escapes-in-lua-ts-mode.patch", Size: 1203 bytes --]
From db7655ef2dbcd68ef259dad1118fd21f152dd05a Mon Sep 17 00:00:00 2001
From: nverno <noah.v.peart@gmail.com>
Date: Sun, 12 Nov 2023 11:36:09 -0800
Subject: [PATCH] Fix font-lock for string escapes in lua-ts-mode
* lua-ts-mode.el (lua-ts--font-lock-settings): Apply font-lock
to the entire string containing an escape sequence. (Bug#67135)
---
lisp/progmodes/lua-ts-mode.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el
index 2193779b759..bb6d5cb8c91 100644
--- a/lisp/progmodes/lua-ts-mode.el
+++ b/lisp/progmodes/lua-ts-mode.el
@@ -148,10 +148,6 @@ lua-ts--font-lock-settings
:feature 'delimiter
'(["," ";"] @font-lock-delimiter-face)
- :language 'lua
- :feature 'escape
- '((escape_sequence) @font-lock-escape-face)
-
:language 'lua
:feature 'constant
'((variable_list
@@ -213,6 +209,11 @@ lua-ts--font-lock-settings
:feature 'string
'((string) @font-lock-string-face)
+ :language 'lua
+ :feature 'escape
+ :override t
+ '((escape_sequence) @font-lock-escape-face)
+
:language 'lua
:feature 'comment
'((comment) @font-lock-comment-face
--
2.41.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#67135: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings
2023-11-12 22:26 ` jm--- via Bug reports for GNU Emacs, the Swiss army knife of text editors
@ 2023-11-15 13:08 ` Eli Zaretskii
0 siblings, 0 replies; 3+ messages in thread
From: Eli Zaretskii @ 2023-11-15 13:08 UTC (permalink / raw)
To: jm; +Cc: noah.v.peart, 67135-done
> Date: Sun, 12 Nov 2023 22:26:16 +0000
> TLS-Required: No
> From: jm--- via "Bug reports for GNU Emacs,
> the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
>
> November 12, 2023 at 7:45 PM, "Noah Peart" <noah.v.peart@gmail.com> wrote:
> >
> > Tags: patch
> >
> > * lisp/progmodes/lua-ts-mode.el
> > (lua-ts-mode--font-lock-settings): fix font-locking for string escapes
> >
> > Bug: Strings aren't fontified when they have escape sequences in them.
> >
> > Recipe to reproduce:
> > In a `lua-ts-mode` buffer, with `treesit-font-lock-level` set to 4 to
> > include escapes,
> >
> > "foo\nbar"
> >
> > font-locks '\n' but not "foo" or "bar".
> >
> > In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version
> > 3.24.33, cairo version 1.16.0) of 2023-11-05 built on noah-X580VD
> > Repository revision: b819b8d6e90337b4cb36b35c2c6d0112c90a8e24
> > Repository branch: master
> > Windowing system distributor 'The X.Org Foundation', version 11.0.12101004
> > System Description: Ubuntu 22.04.3 LTS
> >
> > Configured using:
> > 'configure --prefix=/usr/local --with-modules --with-tree-sitter
> > --with-threads --with-x-toolkit=gtk3 --with-xwidgets --with-gnutls
> > --with-json --with-mailutils --with-jpeg --with-png --with-rsvg
> > --with-tiff --with-xml2 --with-xpm --with-imagemagick CC=gcc-12
> > CXX=gcc-12'
>
> Thanks.
>
> I updated the commit message to include the bug number and
> match the format used in Emacs.
Thanks, installed on master, and closing the bug.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-11-15 13:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-12 19:45 bug#67135: [PATCH] Fix font-lock for string escapes in lua-ts--font-lock-settings Noah Peart
2023-11-12 22:26 ` jm--- via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-11-15 13:08 ` Eli Zaretskii
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.