diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-10-13 12:48:52 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-10-13 12:48:52 +0200 |
commit | 282322e8364366d0d4bd9fe925c7468179ff4712 (patch) | |
tree | 0f75429e39a7afd5a3afb58f65fd9d2846fbace2 /bin/coderay | |
parent | 316f071a1163c96beeab191a9700f863cfc74405 (diff) | |
download | coderay-282322e8364366d0d4bd9fe925c7468179ff4712.tar.gz |
fix warning in "coderay stylesheet" command
Diffstat (limited to 'bin/coderay')
-rwxr-xr-x | bin/coderay | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/coderay b/bin/coderay index ccf16a9..d78cd57 100755 --- a/bin/coderay +++ b/bin/coderay @@ -197,7 +197,7 @@ when 'li', 'list' end end when 'stylesheet', 'style', 'css' - puts CodeRay::Encoders[:html]::CSS.new(args.first).stylesheet + puts CodeRay::Encoders[:html]::CSS.new(args.first || :default).stylesheet when 'commands' commands when 'help' |