aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-06-08 14:08:26 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-06-08 14:08:44 -0700
commit8deccf3a57b35806622fa62d5235e07a0e8d347b (patch)
tree1cbee05d215e9b8397a8affc102c0dd01e434ca3
parent548816cf9a97656e72aa2644c1bd5e5e9ac3d475 (diff)
downloadconsfigurator-8deccf3a57b35806622fa62d5235e07a0e8d347b.tar.gz
FILE:CONTAINS-LINES: add an INDENT declaration
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/property/file.lisp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/property/file.lisp b/src/property/file.lisp
index cde14d0..58a99e6 100644
--- a/src/property/file.lisp
+++ b/src/property/file.lisp
@@ -44,6 +44,7 @@ CONTENT can be a list of lines or a single string."
(defprop contains-lines :posix (path &rest lines)
"Ensure there is a file at PATH containing each of LINES once."
+ (declare (indent 1))
(:apply
(let ((new-lines (copy-list (ensure-cons lines)))
(existing-lines (and (remote-exists-p path)