Skip to content
Snippets Groups Projects
Commit 58e43103 authored by Steve Murphy's avatar Steve Murphy
Browse files

Made expr2 parser 8-bit transparent

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90039 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent aa0f63d6
Branches
Tags
No related merge requests found
......@@ -115,6 +115,7 @@ static char *expr2_token_subst(const char *mess);
%option prefix="ast_yy"
%option batch
%option 8bit
%option outfile="ast_expr2f.c"
%option reentrant
%option bison-bridge
......@@ -171,7 +172,7 @@ static char *expr2_token_subst(const char *mess);
return TOKEN;
}
[a-zA-Z0-9\.';\\_^$#@]+ {
([a-zA-Z0-9\.';\\_^$#@]|[\x80-\xff])+ {
SET_COLUMNS;
SET_STRING;
return TOKEN;
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment