summaryrefslogtreecommitdiff
path: root/lib/coderay/encoders
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-06-23 05:54:31 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-06-23 05:54:31 +0200
commitd6cc5767c9a9bfb4c08bcd5127145b38cb1d29de (patch)
tree1349e5f974555b515e04d95ce46b38ff65c0f092 /lib/coderay/encoders
parente7df328cb49fd09a4e5d0f02e877e3270a8703ed (diff)
downloadcoderay-d6cc5767c9a9bfb4c08bcd5127145b38cb1d29de.tar.gz
HTML encoder shouldn't warn about open tokens
Diffstat (limited to 'lib/coderay/encoders')
-rw-r--r--lib/coderay/encoders/html.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/coderay/encoders/html.rb b/lib/coderay/encoders/html.rb
index b897f5e..20f2409 100644
--- a/lib/coderay/encoders/html.rb
+++ b/lib/coderay/encoders/html.rb
@@ -193,7 +193,6 @@ module Encoders
def finish options
unless @opened.empty?
- warn '%d tokens still open: %p' % [@opened.size, @opened] if $CODERAY_DEBUG
@out << '</span>' while @opened.pop
@last_opened = nil
end