From 9522028b9d27674721eb5e59297f4d57925c5cd8 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 30 May 2001 01:38:41 +0000 Subject: [PATCH] * inilex.l: Add + to list of valid string characters. --- ChangeLog | 4 ++++ inilex.l | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8900c736..5b29e7d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue May 29 21:37:58 2001 Yukihiko Sohda + + * inilex.l: Add + to list of valid string characters. + Mon May 28 20:54:50 2001 Christopher Faylor * Makefile.in: Remove more stuff in the clean target. diff --git a/inilex.l b/inilex.l index a3b2d2ce..eba443df 100644 --- a/inilex.l +++ b/inilex.l @@ -36,7 +36,7 @@ static void ignore_line (); %option yylineno %option never-interactive -STR [a-zA-Z0-9_./-]+ +STR [a-zA-Z0-9_./+-]+ %% -- 2.43.5