diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2019-11-24 15:23:28 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2019-11-24 15:23:28 +0100 |
commit | 54268a946b9bfde526d6d8c28bdb4c8f956eee32 (patch) | |
tree | 25e133d24be196a048c1a3ab99651e226a87ad98 /lib/coderay/scanners/c.rb | |
parent | e3228fa76dd8f26ea7e240c67dcd90cea9106d11 (diff) | |
parent | b5b3430d4635682b767c44469e28a70fe234187e (diff) | |
download | coderay-fix-javascript-regexp.tar.gz |
Merge branch 'master' into fix-javascript-regexpfix-javascript-regexp
Diffstat (limited to 'lib/coderay/scanners/c.rb')
-rw-r--r-- | lib/coderay/scanners/c.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/c.rb b/lib/coderay/scanners/c.rb index 84b6e8e..fb2f30d 100644 --- a/lib/coderay/scanners/c.rb +++ b/lib/coderay/scanners/c.rb @@ -37,7 +37,7 @@ module Scanners add(PREDEFINED_CONSTANTS, :predefined_constant) # :nodoc: ESCAPE = / [rbfntv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x # :nodoc: - UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x # :nodoc: + UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} /x # :nodoc: protected |