summaryrefslogtreecommitdiff
path: root/lib/coderay/tokens.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-06-09 06:24:29 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-06-09 06:24:29 +0200
commit667d4262e42b5866859fb9eb91a0617c1722e7a4 (patch)
treec413b95d7636ec81a3f2bd7c9e1f092958ad8186 /lib/coderay/tokens.rb
parent2347f995a70d7607fc0e417c5c7323eacfdcc341 (diff)
downloadcoderay-667d4262e42b5866859fb9eb91a0617c1722e7a4.tar.gz
avoid empty tokens in Diff output, fix split_into_parts
Diffstat (limited to 'lib/coderay/tokens.rb')
-rw-r--r--lib/coderay/tokens.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/coderay/tokens.rb b/lib/coderay/tokens.rb
index c747017..6957d69 100644
--- a/lib/coderay/tokens.rb
+++ b/lib/coderay/tokens.rb
@@ -93,6 +93,7 @@ module CodeRay
# This method is used by @Scanner#tokenize@ when called with an Array
# of source strings. The Diff encoder uses it for inline highlighting.
def split_into_parts *sizes
+ return Array.new(sizes.size) { Tokens.new } if size == 2 && first == ''
parts = []
opened = []
content = nil