branch: externals/poke-mode
commit c5fa74b6cc775c17fa2be00fcee15df637c70ce4
Author: Jose E. Marchesi <[email protected]>
Commit: Jose E. Marchesi <[email protected]>
poke-mode: fix font lock on string literals
2020-11-08 Jose E. Marchesi <[email protected]>
* etc/poke-mode.el (poke-font-lock-keywords): Remove unneeded
entry for strings, since they are font-locked via the syntax
table.
---
poke-mode.el | 2 --
1 file changed, 2 deletions(-)
diff --git a/poke-mode.el b/poke-mode.el
index da662381ae..7f2d5163e1 100644
--- a/poke-mode.el
+++ b/poke-mode.el
@@ -184,8 +184,6 @@
(: "\\" (repeat 1 3 (any "01234567"))))
"'")
0 'font-lock-string-face)
- ;; string
- `("\"[^\"]*\"" 0 'font-lock-string-face)
;; Names of declared entities
`(,(rx (regexp (regexp-opt '("type" "unit" "fun" "var" "method")))
(+ space)