diff options
author | Nathan Youngman <git@nathany.com> | 2012-10-27 13:47:26 -0600 |
---|---|---|
committer | Nathan Youngman <git@nathany.com> | 2012-10-27 13:47:26 -0600 |
commit | e51783f0435b75e93cacad19af0a47812f88c56b (patch) | |
tree | 6ce98fa24947022dfce500d474b11001119d1b4f | |
parent | 3f69ed0e2454b6389526ef1e41ed579f64158b54 (diff) | |
download | coderay-e51783f0435b75e93cacad19af0a47812f88c56b.tar.gz |
require's not neededlisp-scanner
-rw-r--r-- | lib/coderay/scanners/lisp.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/coderay/scanners/lisp.rb b/lib/coderay/scanners/lisp.rb index 73ce0da..bcf34fa 100644 --- a/lib/coderay/scanners/lisp.rb +++ b/lib/coderay/scanners/lisp.rb @@ -6,9 +6,6 @@ # but it should work fine for Common Lisp # and reasonably well for Scheme. -require 'rubygems' -require 'coderay' - module CodeRay::Scanners class Lisp < Scanner register_for :lisp @@ -81,7 +78,7 @@ module CodeRay::Scanners else sym = matched if KEYWORDS.include? sym - kind = :reserved + kind = :reserved defined = DEFINES[sym] end end |