guix-commits
[Top][All Lists]
Advanced

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

05/12: scripts: download: Replace 'args-fold*' by 'parse-command-line'.


From: guix-commits
Subject: 05/12: scripts: download: Replace 'args-fold*' by 'parse-command-line'.
Date: Thu, 1 Apr 2021 09:20:09 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit d8382d1ef63e8188efe60df84f78aeed449b4c67
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Mon Mar 29 12:18:01 2021 +0200

    scripts: download: Replace 'args-fold*' by 'parse-command-line'.
    
    * guix/scripts/download.scm (define-command): Replace 'args-fold*' by
    'parse-command-line'.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 guix/scripts/download.scm | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/guix/scripts/download.scm b/guix/scripts/download.scm
index ce8dd8b..5a91390 100644
--- a/guix/scripts/download.scm
+++ b/guix/scripts/download.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012, 2013, 2015, 2016, 2017, 2020 Ludovic Courtès 
<ludo@gnu.org>
+;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -162,15 +163,13 @@ and 'base16' ('hex' and 'hexadecimal' can be used as 
well).\n"))
 
   (define (parse-options)
     ;; Return the alist of option values.
-    (args-fold* args %options
-                (lambda (opt name arg result)
-                  (leave (G_ "~A: unrecognized option~%") name))
-                (lambda (arg result)
-                  (when (assq 'argument result)
-                    (leave (G_ "~A: extraneous argument~%") arg))
-
-                  (alist-cons 'argument arg result))
-                %default-options))
+    (parse-command-line args %options (list %default-options)
+                        #:build-options? #f
+                        #:argument-handler
+                        (lambda (arg result)
+                          (when (assq 'argument result)
+                            (leave (G_ "~A: extraneous argument~%") arg))
+                          (alist-cons 'argument arg result))))
 
   (with-error-handling
     (let* ((opts  (parse-options))



reply via email to

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