summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Youngman <git@nathany.com>2012-10-27 13:47:26 -0600
committerNathan Youngman <git@nathany.com>2012-10-27 13:47:26 -0600
commite51783f0435b75e93cacad19af0a47812f88c56b (patch)
tree6ce98fa24947022dfce500d474b11001119d1b4f
parent3f69ed0e2454b6389526ef1e41ed579f64158b54 (diff)
downloadcoderay-lisp-scanner.tar.gz
require's not neededlisp-scanner
-rw-r--r--lib/coderay/scanners/lisp.rb5
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