From 871118b96281306d82ac156491179f3c220aad79 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Tue, 2 Mar 2004 23:46:42 +0000 Subject: [PATCH] Yet another error in the id regexp: numbers are allowed in identifiers, as well as 's. --- helm/metadata/extractor/meta_lex_ind.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/metadata/extractor/meta_lex_ind.l b/helm/metadata/extractor/meta_lex_ind.l index eb915aa66..3d3ad97ce 100644 --- a/helm/metadata/extractor/meta_lex_ind.l +++ b/helm/metadata/extractor/meta_lex_ind.l @@ -95,7 +95,7 @@ void search(char *uri, int first_child, int position, int depth); uri [^"]+ digits [0-9]+ value [^"]+ -id [a-zA-Z]([-_a-zA-Z])* +id [a-zA-Z]([-_'a-zA-Z0-9])* /***************************************************************/ /* 4. Rules. */ -- 2.39.2