diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-03-10 21:46:50 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-03-10 21:46:50 +0100 |
commit | 9cff8a25df888cea7cd8fa42df8115045c01a2eb (patch) | |
tree | 6451c6fc935683292fe387cda29e2258fe3a2a58 | |
parent | af0d7d807c87097346584d06b7be59b5c5e656e2 (diff) | |
download | coderay-9cff8a25df888cea7cd8fa42df8115045c01a2eb.tar.gz |
cleanup
-rw-r--r-- | lib/coderay/scanners/erb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/erb.rb b/lib/coderay/scanners/erb.rb index 4f39e58..727a993 100644 --- a/lib/coderay/scanners/erb.rb +++ b/lib/coderay/scanners/erb.rb @@ -41,7 +41,7 @@ module Scanners end def scan_tokens encoder, options - # FIXME: keep_state + until eos? if (match = scan_until(/(?=#{START_OF_ERB})/o) || scan_rest) and not match.empty? |