orthecreedence / highlight-lisp

A Common Lisp syntax highlighter written in Javascript
77 stars 7 forks source link

Munged brackets #3

Closed lamberta closed 11 years ago

lamberta commented 11 years ago

Perhaps the regex is eating up some extra characters. The following:

(compute-applicable-methods #'say-hello (list mydog)) ;=> (#<STANDARD-METHOD SAY-HELLO (DOG)> #<STANDARD-METHOD SAY-HELLO (MAMMAL)>)

Is getting munged to:

(compute-applicable-methods #'say-hello (list mydog)) ;=> (#(DOG)> #(MAMMAL)>)
orthecreedence commented 11 years ago

Thanks for the bug report, should be fixed. Please pull and confirm.

lamberta commented 11 years ago

Looks like it's working, thanks!