[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70132] [PATCH 01/11] channels: Use SRFI-71 instead of SRFI-11.
From: |
Simon Tournier |
Subject: |
[bug#70132] [PATCH 01/11] channels: Use SRFI-71 instead of SRFI-11. |
Date: |
Tue, 16 Apr 2024 00:41:52 +0200 |
Hi Ludo,
Sorry for being late and out of my curiosity; improving my Guile-fu. ;-)
On lun., 01 avril 2024 at 22:25, Ludovic Courtès <ludo@gnu.org> wrote:
> - #:use-module (srfi srfi-11)
[...]
> + #:use-module (srfi srfi-71)
> - (let-values (((channel)
> - (ensure-default-introduction channel))
> - ((checkout commit relation)
> - (update-cached-checkout (channel-url channel)
> - #:ref (channel-reference channel)
> - #:starting-commit starting-commit)))
> + (let ((channel (ensure-default-introduction channel))
> + (checkout commit relation
> + (update-cached-checkout (channel-url channel)
> + #:ref (channel-reference channel)
> + #:starting-commit
> starting-commit)))
Is it only aesthetic? Or does it change some performance?
Cheers,
simon
- [bug#70132] [PATCH 00/11] Improve startup time and memory footprint for short-lived commands, Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 03/11] channels: Move ‘commit-short-id’ to (guix git)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 01/11] channels: Use SRFI-71 instead of SRFI-11., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 01/11] channels: Use SRFI-71 instead of SRFI-11.,
Simon Tournier <=
- [bug#70132] [PATCH 04/11] git: Add ‘tag->commit’ and use it in (guix channels)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 05/11] channels: Autoload (git …) modules., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 02/11] git: Add ‘repository-info’ and use it in (guix channels)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 06/11] guix system: Autoload some more., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 10/11] Autoload (guix build syscalls)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 11/11] Autoload (gcrypt hash)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 08/11] guix: Delay loading of (gnutls)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 09/11] ui: Delay use of (guix build syscalls)., Ludovic Courtès, 2024/04/01
- [bug#70132] [PATCH 07/11] utils: Don’t re-export ‘call-with-temporary-output-file’., Ludovic Courtès, 2024/04/01