optparse.lisp: Fix stupid paren-positioning blunders.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 27 Jun 2016 09:22:17 +0000 (10:22 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 27 Jun 2016 09:22:17 +0000 (10:22 +0100)
optparse.lisp

index b418017..159ee60 100644 (file)
   (short-name nil :type (or null character) :read-only t)
   (arg-name nil :type (or null string) :read-only t)
   (arg-optional-p nil :type t :read-only t)
-  (documentation nil :type (or null string)) :read-only t)
+  (documentation nil :type (or null string) :read-only t))
 
 (export '(option-parser option-parser-p make-option-parser
          op-options op-non-option op-long-only-p
   (long-only-p nil :type t :read-only t)
   (numeric-p nil :type t :read-only t)
   (negated-numeric-p nil :type t :read-only t)
-  (negated-p nil :type t) :read-only t)
+  (negated-p nil :type t :read-only t))
 
 (export 'option-parse-error)
 (define-condition option-parse-error (error simple-condition)