From: Christopher Faylor Date: Wed, 30 May 2001 01:38:41 +0000 (+0000) Subject: * inilex.l: Add + to list of valid string characters. X-Git-Tag: Z-cygwin_daemon_merge-new_HEAD~45 X-Git-Url: https://cygwin.com/git/?a=commitdiff_plain;h=9522028b9d27674721eb5e59297f4d57925c5cd8;p=cygwin-apps%2Fsetup.git * inilex.l: Add + to list of valid string characters. --- 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_./+-]+ %%