From 7db7ea29e1d701844bd6d57d591c0a37dcfd30fd Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 5 Oct 2023 20:21:20 +0200 Subject: [PATCH] libsmartcols: (filter) support period in identifier Signed-off-by: Karel Zak --- libsmartcols/src/filter-scanner.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsmartcols/src/filter-scanner.l b/libsmartcols/src/filter-scanner.l index 70db492621..2bc299910c 100644 --- a/libsmartcols/src/filter-scanner.l +++ b/libsmartcols/src/filter-scanner.l @@ -4,7 +4,7 @@ %option reentrant bison-bridge noyywrap noinput nounput -id [a-zA-Z][a-zA-Z_0-9]* +id [a-zA-Z][a-zA-Z_.0-9]* int [0-9]+ blank [ \t] str_qu \"[^\"\n]*\" -- 2.47.3