summaryrefslogtreecommitdiff
path: root/gnu/image.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-09-02 19:44:59 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-09-07 14:26:34 +0200
commit0edb79b2a91947fd2abec420152cb46b3a4524b9 (patch)
treea528235a97c0e063de085d7ae57a45c010981ff0 /gnu/image.scm
parente917f1242c169f011dedd133515de5e87e267b93 (diff)
image: Use #true and #false.
* gnu/image.scm: Use #true and #false instead of #t and #f respectively. No functional change.
Diffstat (limited to 'gnu/image.scm')
-rw-r--r--gnu/image.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/image.scm b/gnu/image.scm
index 44703934c91..4a0068934e6 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -125,12 +125,12 @@ numeric expression ~%") value 'field))))
125 (default '())) ;list of strings 125 (default '())) ;list of strings
126 (label partition-label) ;string 126 (label partition-label) ;string
127 (uuid partition-uuid 127 (uuid partition-uuid
128 (default #f)) ;<uuid> 128 (default #false)) ;<uuid>
129 (flags partition-flags 129 (flags partition-flags
130 (default '()) ;list of symbols 130 (default '()) ;list of symbols
131 (sanitize validate-partition-flags)) 131 (sanitize validate-partition-flags))
132 (initializer partition-initializer 132 (initializer partition-initializer
133 (default #f))) ;gexp | #f 133 (default #false))) ;gexp | #false
134 134
135 135
136;;; 136;;;
@@ -162,11 +162,11 @@ that is not in SET, mentioning FIELD in the error message."
162 image make-image 162 image make-image
163 image? 163 image?
164 (name image-name ;symbol 164 (name image-name ;symbol
165 (default #f)) 165 (default #false))
166 (format image-format ;symbol 166 (format image-format ;symbol
167 (sanitize validate-image-format)) 167 (sanitize validate-image-format))
168 (platform image-platform ;<platform> 168 (platform image-platform ;<platform>
169 (default #f)) 169 (default #false))
170 (size image-size ;size in bytes as integer 170 (size image-size ;size in bytes as integer
171 (default 'guess) 171 (default 'guess)
172 (sanitize validate-size)) 172 (sanitize validate-size))
@@ -178,15 +178,15 @@ that is not in SET, mentioning FIELD in the error message."
178 (partitions image-partitions ;list of <partition> 178 (partitions image-partitions ;list of <partition>
179 (default '())) 179 (default '()))
180 (compression? image-compression? ;boolean 180 (compression? image-compression? ;boolean
181 (default #t)) 181 (default #true))
182 (volatile-root? image-volatile-root? ;boolean 182 (volatile-root? image-volatile-root? ;boolean
183 (default #t)) 183 (default #true))
184 (shared-store? image-shared-store? ;boolean 184 (shared-store? image-shared-store? ;boolean
185 (default #f)) 185 (default #false))
186 (shared-network? image-shared-network? ;boolean 186 (shared-network? image-shared-network? ;boolean
187 (default #f)) 187 (default #false))
188 (substitutable? image-substitutable? ;boolean 188 (substitutable? image-substitutable? ;boolean
189 (default #t))) 189 (default #true)))
190 190
191 191
192;;; 192;;;