Highlight \b

This commit is contained in:
Yevgen Muntyan 2007-08-20 22:16:11 -05:00
parent e9e1d0107a
commit 407c65f10e

View File

@ -67,7 +67,7 @@
<!-- http://en.wikipedia.org/wiki/C_syntax#Strings -->
<define-regex id="escaped-character" extended="true">
\\( # leading backslash
[\\\"\'nrtfav\?e] | # escaped character
[\\\"\'nrtfbav\?e] | # escaped character
[0-7]{1,3} | # one, two, or three octal digits
x[0-9A-Fa-f]{0,2} # 'x' followed by zero, one, or two hex digits
)