summaryrefslogtreecommitdiff
path: root/lib/coderay
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2007-04-25 20:23:53 +0000
committermurphy <murphy@rubychan.de>2007-04-25 20:23:53 +0000
commit499415cc2d1c3a81491cd827848e9d79ed9813f0 (patch)
treef5ebef8c5db200967caa9a8d18f3920679aa465b /lib/coderay
parent3ecc8116cc06289724f9a2ccf734e99d843abc79 (diff)
downloadcoderay-499415cc2d1c3a81491cd827848e9d79ed9813f0.tar.gz
Declared version 0.7.7.
Fix/clarification for JRuby (thx@bovi).
Diffstat (limited to 'lib/coderay')
-rw-r--r--lib/coderay/tokens.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/tokens.rb b/lib/coderay/tokens.rb
index 26c923f..7d82afb 100644
--- a/lib/coderay/tokens.rb
+++ b/lib/coderay/tokens.rb
@@ -353,7 +353,7 @@ module CodeRay
#
# Returns self.
def << token
- @callback.call token
+ @callback.call(*token)
@size += 1
self
end