src/parser/parser-proto.lisp: Fix bogus indentation.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 14:03:58 +0000 (15:03 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 20 Aug 2019 14:03:58 +0000 (15:03 +0100)
src/parser/parser-proto.lisp

index 979a2a5..f7b5993 100644 (file)
                                                       (not peekp)
                                                       `(not ,peekp))))
                       (step (parser-step context)))
-                     (cond ((not (constantp peekp))
-                            `(multiple-value-prog1 ,result
-                               (unless ,peekp ,step)))
-                           (peekp
-                            result)
-                           (t
-                            `(multiple-value-prog1 ,result
-                               ,step))))
+                 (cond ((not (constantp peekp))
+                        `(multiple-value-prog1 ,result
+                           (unless ,peekp ,step)))
+                       (peekp
+                        result)
+                       (t
+                        `(multiple-value-prog1 ,result
+                           ,step))))
               (values (list ,(if valuep `(list ,type ,value) type))
                       nil nil)))))))