From 549e2629f401fbbdd2a17e5b8e5d2fd1ebc1ceed Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 12 Jan 2026 15:05:54 +0100 Subject: [PATCH] fix: include $$ in list of non-allowed delimiters --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index 5cd7d3b9..f6b6374f 100644 --- a/source/main.pas +++ b/source/main.pas @@ -5345,7 +5345,7 @@ begin Msg := _('Empty value.') else begin rx := TRegExpr.Create; - rx.Expression := '(/\*|--|#|\''|\"|`)'; + rx.Expression := '(/\*|--|#|\''|\"|`|\$\$)'; if rx.Exec(Value) then Msg := _('Start-of-comment tokens or string literal markers are not allowed.') end;