From 39dba74d9cdd2d627b62229a66bfa844306b5ce4 Mon Sep 17 00:00:00 2001 From: polos Date: Fri, 24 Jul 2020 19:36:07 +0200 Subject: [PATCH] fix indentation --- lib/qml-ui-vars.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/qml-ui-vars.lisp b/lib/qml-ui-vars.lisp index 47cae12..7ad405e 100644 --- a/lib/qml-ui-vars.lisp +++ b/lib/qml-ui-vars.lisp @@ -44,11 +44,11 @@ (defun grep (name) (flet ((one-space (s) (x:join (remove-if 'x:empty-string (x:split s))))) - (let ((s (ext:run-program "grep" (list "-rn" - "--include" - "*.qml" - (format nil "objectName:[[:space:]]*~S" name) - "qml/")))) + (let ((s (ext:run-program "grep" (list "-rn" + "--include" + "*.qml" + (format nil "objectName:[[:space:]]*~S" name) + "qml/")))) (loop :for line = (read-line s nil nil) :while line :collect (one-space line)))))