summaryrefslogtreecommitdiff
path: root/lib/coderay/token_kinds.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-06-22 23:53:32 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-06-22 23:53:32 +0200
commitd0d1b129f09dbae8fc25c093c09f72c6396b122a (patch)
treeb343778cbbbd32428977a01f19633f51b2a86ef4 /lib/coderay/token_kinds.rb
parent5b1a49fdd3bef559991242a4ad7d3d1ed9cb48c8 (diff)
downloadcoderay-d0d1b129f09dbae8fc25c093c09f72c6396b122a.tar.gz
whitespace
Diffstat (limited to 'lib/coderay/token_kinds.rb')
-rwxr-xr-xlib/coderay/token_kinds.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb
index f1696df..9137a49 100755
--- a/lib/coderay/token_kinds.rb
+++ b/lib/coderay/token_kinds.rb
@@ -1,14 +1,14 @@
module CodeRay
-
+
# A Hash of all known token kinds and their associated CSS classes.
TokenKinds = Hash.new do |h, k|
warn 'Undefined Token kind: %p' % [k] if $CODERAY_DEBUG
false
end
-
+
# speedup
TokenKinds.compare_by_identity if TokenKinds.respond_to? :compare_by_identity
-
+
TokenKinds.update( # :nodoc:
:debug => 'debug', # highlight for debugging (white on blue background)