Cleaned up marking of comments/cdata tags.

This commit is contained in:
Yorick Peterse 2014-08-15 22:05:09 +02:00
parent 8f4eaf3823
commit 2c488f92be
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@
comment_end = '-->';
action start_comment {
mark = ts + 4;
mark = te;
fnext comment_body;
}
@ -81,7 +81,7 @@
cdata_end = ']]>';
action start_cdata {
mark = ts + 9;
mark = te;
fnext cdata_body;
}