guix-commits
[Top][All Lists]
Advanced

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

02/03: size: Avoid '_' as a pattern variable in 'match'.


From: Ludovic Courtès
Subject: 02/03: size: Avoid '_' as a pattern variable in 'match'.
Date: Thu, 6 Apr 2017 18:17:22 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 9a3762a768a1f7b8e5eba8cee4f0f883bbd07892
Author: Ludovic Courtès <address@hidden>
Date:   Thu Apr 6 18:21:54 2017 +0200

    size: Avoid '_' as a pattern variable in 'match'.
    
    * guix/scripts/size.scm (display-profile, profile->page-map): Don't use
    '_' as a 'match' pattern variable.
---
 guix/scripts/size.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/guix/scripts/size.scm b/guix/scripts/size.scm
index ea259f3..f612dae 100644
--- a/guix/scripts/size.scm
+++ b/guix/scripts/size.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2016 Ludovic Courtès <address@hidden>
+;;; Copyright © 2015, 2016, 2017 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -91,7 +91,8 @@ if ITEM is not in the store."
                          (* 100. (/ self whole 1.)))))
               (sort profile
                     (match-lambda*
-                      ((($ <profile> _ _ total1) ($ <profile> _ _ total2))
+                      ((($ <profile> name1 self1 total1)
+                        ($ <profile> name2 self2 total2))
                        (> total1 total2)))))
     (format port (_ "total: ~,1f MiB~%") (/ whole MiB 1.))))
 
@@ -200,7 +201,8 @@ the name of a PNG file."
            0
            (sort profiles
                  (match-lambda*
-                   ((($ <profile> _ _ total1) ($ <profile> _ _ total2))
+                   ((($ <profile> name1 self1 total1)
+                     ($ <profile> name2 self2 total2))
                     (> total1 total2))))))
 
   ;; TRANSLATORS: This is the title of a graph, meaning that the graph



reply via email to

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