[Pcsclite-cvs-commit] r6089 - /trunk/PCSC/src/tokenparser.l

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sun Oct 30 13:50:35 UTC 2011


Author: rousseau
Date: Sun Oct 30 13:50:34 2011
New Revision: 6089

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=6089
Log:
Add ';' in the list of valid caracters

Allow to use "&" for "&" like in "Giesecke & Devrient"
See revision 6088

Modified:
    trunk/PCSC/src/tokenparser.l

Modified: trunk/PCSC/src/tokenparser.l
URL: http://svn.debian.org/wsvn/pcsclite/trunk/PCSC/src/tokenparser.l?rev=6089&op=diff
==============================================================================
--- trunk/PCSC/src/tokenparser.l (original)
+++ trunk/PCSC/src/tokenparser.l Sun Oct 30 13:50:34 2011
@@ -50,7 +50,7 @@
 "\n"                                            {}
 \<key\>([A-Z]|[a-z]|[0-9]|[ \t])+\<\/key\>      { eval_key(yytext, ListKeys); }
 [ \t]                                           {}
-\<string\>([A-Z]|[a-z]|[0-9]|[ \t]|[!@#$%^&*()\-+/_\:?.,=~'"])+\<\/string\> { eval_value(yytext, ListValues); }
+\<string\>([A-Z]|[a-z]|[0-9]|[ \t]|[!@#$%^&*()\-+/_\:?.,=~'";])+\<\/string\> { eval_value(yytext, ListValues); }
 .                                               { tperrorCheck(yytext); }
 %%
 




More information about the Pcsclite-cvs-commit mailing list