installer: Fix compute calls.

* gnu/installer/newt/keymap.scm (run-keymap-page): Add missing argument to
compute procedure.
* gnu/installer/newt/network.scm (run-network-page): Ditto.
This commit is contained in:
Mathieu Othacehe 2018-12-05 17:48:36 +09:00 committed by Ludovic Courtès
parent 35e99a23b5
commit 54754efc91
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ names of the selected keyboard layout and variant."
(installer-step
(id 'variant)
(compute
(lambda (result)
(lambda (result _)
(let ((variants (x11-keymap-layout-variants
(result-step result 'layout))))
(run-variant-page variants

View File

@ -131,7 +131,7 @@ Internet."
(installer-step
(id 'power-technology)
(compute
(lambda (result)
(lambda (result _)
(let ((technology (result-step result 'select-technology)))
(connman-enable-technology technology)
(wait-technology-powered technology)))))
@ -140,7 +140,7 @@ Internet."
(installer-step
(id 'connect-service)
(compute
(lambda (result)
(lambda (result _)
(let* ((technology (result-step result 'select-technology))
(type (technology-type technology)))
(cond