From ba92c444e2ce6a72616cdbe3017a0d6d3e0b8d4f Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 27 Jun 2016 10:22:17 +0100 Subject: [PATCH] optparse.lisp: Fix stupid paren-positioning blunders. --- optparse.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/optparse.lisp b/optparse.lisp index b418017..159ee60 100644 --- a/optparse.lisp +++ b/optparse.lisp @@ -114,7 +114,7 @@ (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 @@ -172,7 +172,7 @@ (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) -- 2.11.0