[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-30 5c1bd991396: Fix 'forward-comment' in 'toml-ts-mode'
From: |
Eli Zaretskii |
Subject: |
emacs-30 5c1bd991396: Fix 'forward-comment' in 'toml-ts-mode' |
Date: |
Sat, 17 Aug 2024 05:30:12 -0400 (EDT) |
branch: emacs-30
commit 5c1bd991396ff92cf0b81996f63c378c115f5b86
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
Fix 'forward-comment' in 'toml-ts-mode'
* lisp/textmodes/toml-ts-mode.el (toml-ts-mode--syntax-table): Fix
syntax of newline. Patch from Jostein Kjønigsen
<jostein@secure.kjonigsen.net>. (Bug#72489)
---
lisp/textmodes/toml-ts-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/textmodes/toml-ts-mode.el b/lisp/textmodes/toml-ts-mode.el
index 1b621032f8a..3c4533a7fea 100644
--- a/lisp/textmodes/toml-ts-mode.el
+++ b/lisp/textmodes/toml-ts-mode.el
@@ -50,7 +50,7 @@
(modify-syntax-entry ?= "." table)
(modify-syntax-entry ?\' "\"" table)
(modify-syntax-entry ?# "<" table)
- (modify-syntax-entry ?\n "> b" table)
+ (modify-syntax-entry ?\n ">" table)
(modify-syntax-entry ?\^m "> b" table)
table)
"Syntax table for `toml-ts-mode'.")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-30 5c1bd991396: Fix 'forward-comment' in 'toml-ts-mode',
Eli Zaretskii <=