From b553730081bbc68e0715f40f1a0d1e10112d62d7 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Sun, 17 Nov 2024 17:43:06 +0800 Subject: [PATCH] [61_17] Julia: fix Apostrophe greys out code ## What ## Why ## How to test your changes? --- TeXmacs/plugins/julia/progs/code/julia-lang.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TeXmacs/plugins/julia/progs/code/julia-lang.scm b/TeXmacs/plugins/julia/progs/code/julia-lang.scm index b42cb26a4b..aa05483566 100644 --- a/TeXmacs/plugins/julia/progs/code/julia-lang.scm +++ b/TeXmacs/plugins/julia/progs/code/julia-lang.scm @@ -105,7 +105,8 @@ (bool_features "hex_with_8_bits" "hex_with_16_bits" "hex_with_32_bits" "octal_upto_3_digits") - (escape_sequences "\\" "\"" "'" "a" "b" "f" "n" "r" "t" "v" "newline"))) + (escape_sequences "\\" "\"" "'" "a" "b" "f" "n" "r" "t" "v" "newline") + (pairs "\""))) (tm-define (parser-feature lan key) (:require (and (== lan "julia") (== key "comment")))