Changeset 6ee85f6a739f00e714c3f64759ce268f0d567acc
- 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 ", ', etc.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r17b2a72 |
r6ee85f6 |
|
| 59 | 59 | )* :>> '-->'; |
|---|
| 60 | 60 | |
|---|
| 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; |
|---|
| 63 | 63 | xml_cdata_str = |
|---|
| 64 | 64 | '<![CDATA[' @code ( |
|---|