From f64bfaae9eff17ce1a3abd596680102320eb7353 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Thu, 18 May 2017 16:33:14 +0200 Subject: [PATCH] allowing unquoted # breaks comments --- dbLoadTemplate_lex.l | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dbLoadTemplate_lex.l b/dbLoadTemplate_lex.l index 4537c8e..7dc673d 100644 --- a/dbLoadTemplate_lex.l +++ b/dbLoadTemplate_lex.l @@ -17,8 +17,9 @@ sstringchar [^'\n\\] /* This breaks backward compatibility to 3.14.8: bareword [a-zA-Z0-9_\-+:./\\\[\]<>;] +Re-enable unquoted chars except # */ -bareword [a-zA-Z0-9_\-+:./\\\[\]<>;^~*#%!|&$()@?] +bareword [a-zA-Z0-9_\-+:./\\\[\]<>;^~*%!|&$()@?] %%