diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 05:39:45 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 05:39:45 +0200 |
commit | 36531238fa4ef33f1792c6ea6de5e00dcadf018a (patch) | |
tree | cca387c2b27dc23d71dab6bd928e10fcdc6cd46b /lib/coderay/scanners/cpp.rb | |
parent | 5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e (diff) | |
download | coderay-36531238fa4ef33f1792c6ea6de5e00dcadf018a.tar.gz |
pretty (longer) token class names; closes #347
Diffstat (limited to 'lib/coderay/scanners/cpp.rb')
-rw-r--r-- | lib/coderay/scanners/cpp.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/cpp.rb b/lib/coderay/scanners/cpp.rb index 57eadd4..9da62f4 100644 --- a/lib/coderay/scanners/cpp.rb +++ b/lib/coderay/scanners/cpp.rb @@ -133,7 +133,7 @@ module Scanners elsif match = scan(/(?:0[0-7]+)(?![89.eEfF])/) label_expected = false - encoder.text_token match, :oct + encoder.text_token match, :octal elsif match = scan(/(?:\d+)(?![.eEfF])L?L?/) label_expected = false |