guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: image: Use #true and #false.


From: guix-commits
Subject: branch master updated: image: Use #true and #false.
Date: Wed, 07 Sep 2022 08:27:14 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0edb79b2a9 image: Use #true and #false.
0edb79b2a9 is described below

commit 0edb79b2a91947fd2abec420152cb46b3a4524b9
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Fri Sep 2 19:44:59 2022 +0200

    image: Use #true and #false.
    
    * gnu/image.scm: Use #true and #false instead of #t and #f respectively. No
    functional change.
---
 gnu/image.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/image.scm b/gnu/image.scm
index 44703934c9..4a0068934e 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -125,12 +125,12 @@ numeric expression ~%") value 'field))))
                         (default '()))  ;list of strings
   (label                partition-label)  ;string
   (uuid                 partition-uuid
-                        (default #f))  ;<uuid>
+                        (default #false))  ;<uuid>
   (flags                partition-flags
                         (default '())  ;list of symbols
                         (sanitize validate-partition-flags))
   (initializer          partition-initializer
-                        (default #f))) ;gexp | #f
+                        (default #false))) ;gexp | #false
 
 
 ;;;
@@ -162,11 +162,11 @@ that is not in SET, mentioning FIELD in the error 
message."
   image make-image
   image?
   (name               image-name ;symbol
-                      (default #f))
+                      (default #false))
   (format             image-format                ;symbol
                       (sanitize validate-image-format))
   (platform           image-platform ;<platform>
-                      (default #f))
+                      (default #false))
   (size               image-size  ;size in bytes as integer
                       (default 'guess)
                       (sanitize validate-size))
@@ -178,15 +178,15 @@ that is not in SET, mentioning FIELD in the error 
message."
   (partitions         image-partitions ;list of <partition>
                       (default '()))
   (compression?       image-compression? ;boolean
-                      (default #t))
+                      (default #true))
   (volatile-root?     image-volatile-root? ;boolean
-                      (default #t))
+                      (default #true))
   (shared-store?      image-shared-store? ;boolean
-                      (default #f))
+                      (default #false))
   (shared-network?    image-shared-network? ;boolean
-                      (default #f))
+                      (default #false))
   (substitutable?     image-substitutable? ;boolean
-                      (default #t)))
+                      (default #true)))
 
 
 ;;;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]