[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: installer: Add "space" to "selection keys".
From: |
Danny Milosavljevic |
Subject: |
01/02: installer: Add "space" to "selection keys". |
Date: |
Wed, 5 Jul 2017 13:13:06 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 5cdffcd93415ff9c5d082799734376337ec0cf3e
Author: Danny Milosavljevic <address@hidden>
Date: Wed Jul 5 17:40:11 2017 +0200
installer: Add "space" to "selection keys".
* gnu/system/installer/utils.scm (select-key?): Modify.
---
gnu/system/installer/utils.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/system/installer/utils.scm b/gnu/system/installer/utils.scm
index d8475b0..f635351 100644
--- a/gnu/system/installer/utils.scm
+++ b/gnu/system/installer/utils.scm
@@ -206,7 +206,8 @@ which will process each string before returning it."
(or
(eqv? c #\nl)
(eqv? c #\cr)
- (eqv? c KEY_ENTER)))
+ (eqv? c KEY_ENTER)
+ (eqv? c #\space)))