Fixed bug in the C scanner related to ignored backslash characters. This addresses a problem in 1.3.32 reported by Bill Spotz.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10154 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
c66c3dd632
commit
3fef3e12bc
1 changed files with 2 additions and 0 deletions
|
|
@ -430,6 +430,8 @@ int yylook(void) {
|
|||
break;
|
||||
case SWIG_TOKEN_ENDLINE:
|
||||
break;
|
||||
case SWIG_TOKEN_BACKSLASH:
|
||||
break;
|
||||
default:
|
||||
Swig_error(cparse_file, cparse_line, "Illegal token '%s'.\n", Scanner_text(scan));
|
||||
return (ILLEGAL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue