diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-23 05:54:31 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-23 05:54:31 +0200 |
commit | d6cc5767c9a9bfb4c08bcd5127145b38cb1d29de (patch) | |
tree | 1349e5f974555b515e04d95ce46b38ff65c0f092 /lib | |
parent | e7df328cb49fd09a4e5d0f02e877e3270a8703ed (diff) | |
download | coderay-d6cc5767c9a9bfb4c08bcd5127145b38cb1d29de.tar.gz |
HTML encoder shouldn't warn about open tokens
Diffstat (limited to 'lib')
-rw-r--r-- | lib/coderay/encoders/html.rb | 1 |
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 |