Index: /trunk/THANKS
===================================================================
--- /trunk/THANKS	(revision 30)
+++ /trunk/THANKS	(revision 31)
@@ -2,4 +2,4 @@
 
 Ben Thomasson (found bug in example)
-Hannes Klas (suggested additional interface)
+Hannes Klas (suggested additional interface, noticed old debugging output)
 Zach (reported packaging error)
Index: /trunk/dso-lex.asd
===================================================================
--- /trunk/dso-lex.asd	(revision 30)
+++ /trunk/dso-lex.asd	(revision 31)
@@ -19,4 +19,8 @@
 
 (asdf:defsystem #:dso-lex
+  :description "A simple lexer based on CL-PPCRE"
+  :version "0.3.2"
+  :author "David Owen <dsowen@fugue88.ws>"
+  :license "LGPL-3"
   :depends-on (#:cl-ppcre #:dso-util)
   :components ((:file "lex")))
Index: /trunk/lex.lisp
===================================================================
--- /trunk/lex.lisp	(revision 30)
+++ /trunk/lex.lisp	(revision 31)
@@ -61,5 +61,4 @@
           (lambda (i)
             `(let ((end (nth-value 1 (scan ',(nth i regexs) ,input-var :start ,start-var))))
-               (format t "scanner ~A ended at ~A~%" ,i end)
                (when (and end (or (null at) (> end max)))
                  (setf max end
