From 0cd581d08bfbc56ed1c23c4919d39a364f108a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Fri, 3 Feb 2017 18:13:18 +0100 Subject: [PATCH] cosmetic indent fix --- src/cmp/cmpinline.lsp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cmp/cmpinline.lsp b/src/cmp/cmpinline.lsp index d2c2f799f..a4591cc3d 100644 --- a/src/cmp/cmpinline.lsp +++ b/src/cmp/cmpinline.lsp @@ -94,10 +94,9 @@ (defun emit-inlined-values (form forms) (let ((args (c1form-arg 0 form))) (prog1 (emit-inline-form (or (pop args) (c1nil)) - ;; the rest of the form - ;; in a inlined values + ;; the rest of the form in inlined values ;; are the rest of the values args - args ) + args) (loop with *destination* = 'TRASH for form in args do (c2expr* form)))))