Skip to content

Commit e51783f

Browse files
committed
require's not needed
1 parent 3f69ed0 commit e51783f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/coderay/scanners/lisp.rb

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
# but it should work fine for Common Lisp
77
# and reasonably well for Scheme.
88

9-
require 'rubygems'
10-
require 'coderay'
11-
129
module CodeRay::Scanners
1310
class Lisp < Scanner
1411
register_for :lisp
@@ -81,7 +78,7 @@ def scan_tokens(tokens, options)
8178
else
8279
sym = matched
8380
if KEYWORDS.include? sym
84-
kind = :reserved
81+
kind = :reserved
8582
defined = DEFINES[sym]
8683
end
8784
end

0 commit comments

Comments
 (0)