Changeset 6ee85f6a739f00e714c3f64759ce268f0d567acc

Show
Ignore:
Timestamp:
07/09/2008 02:07:23 PM (6 months ago)
Author:
mitchell <mitchell@frost.(none)>
git-committer:
mitchell <mitchell@frost.(none)> 1215637643 -0400
git-parent:

[d1f59e294f20ad084df59be08f7b788f0e846193]

git-author:
mitchell <mitchell@frost.(none)> 1215637643 -0400
Message:

String escapes aren't allowed in XML; use &quot;, &apos;, etc.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ext/ohcount_native/ragel_parsers/xml.rl

    r17b2a72 r6ee85f6  
    5959    )* :>> '-->'; 
    6060 
    61   xml_sq_str = '\'' ([^\r\n\f'\\] | '\\' nonnewline)* '\'' @code; 
    62   xml_dq_str = '"' ([^\r\n\f"\\] | '\\' nonnewline)* '"' @code; 
     61  xml_sq_str = '\'' ([^\r\n\f'])* '\'' @code; 
     62  xml_dq_str = '"' ([^\r\n\f"])* '"' @code; 
    6363  xml_cdata_str = 
    6464    '<![CDATA[' @code (