summaryrefslogtreecommitdiff
path: root/lib/coderay/token_kinds.rb
diff options
context:
space:
mode:
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)