lib/rouge/lexers/c.rb in rouge-1.7.7 vs lib/rouge/lexers/c.rb in rouge-1.8.0

- old
+ new

@@ -5,9 +5,10 @@ class C < RegexLexer tag 'c' filenames '*.c', '*.h', '*.idc' mimetypes 'text/x-chdr', 'text/x-csrc' + title "C" desc "The C programming language" # optional comment or whitespace ws = %r((?:\s|//.*?\n|/[*].*?[*]/)+) id = /[a-zA-Z_][a-zA-Z0-9_]*/