[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
73/197: installer: Correct behaviour of push-cursor and pop-cursor proce
From: |
Danny Milosavljevic |
Subject: |
73/197: installer: Correct behaviour of push-cursor and pop-cursor procedures. |
Date: |
Mon, 3 Jul 2017 20:37:02 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit a8018122558654ca726b86d45fb802254fa128e6
Author: John Darrington <address@hidden>
Date: Fri Jan 6 17:41:01 2017 +0100
installer: Correct behaviour of push-cursor and pop-cursor procedures.
* utils.scm (push-cursor,pop-cursor): Correct thinko.
---
gnu/system/installer/utils.scm | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/gnu/system/installer/utils.scm b/gnu/system/installer/utils.scm
index 25a8390..5517710 100644
--- a/gnu/system/installer/utils.scm
+++ b/gnu/system/installer/utils.scm
@@ -209,13 +209,11 @@ which will process each string before returning it."
(define cursor-stack '())
(define (push-cursor c)
- (curs-set c)
- (set! cursor-stack (cons c cursor-stack)))
+ (set! cursor-stack (cons (curs-set c) cursor-stack)))
(define (pop-cursor)
- (set! cursor-stack (cdr cursor-stack))
- (curs-set (car cursor-stack)))
-
+ (curs-set (car cursor-stack))
+ (set! cursor-stack (cdr cursor-stack)))
- 84/197: installer: Use guix build syscalls module for network interrogation., (continued)
- 84/197: installer: Use guix build syscalls module for network interrogation., Danny Milosavljevic, 2017/07/03
- 94/197: installer: Add the notion of uuids to prospective filesystems., Danny Milosavljevic, 2017/07/03
- 89/197: installer: Make the network menu more reliable., Danny Milosavljevic, 2017/07/03
- 90/197: installer: Enable direct scrolling to top or bottom of menus., Danny Milosavljevic, 2017/07/03
- 78/197: installer: Ensure that the cursor visibility is updated on each page., Danny Milosavljevic, 2017/07/03
- 107/197: installer: Do not allow the creation of invalid file-system specificaitons., Danny Milosavljevic, 2017/07/03
- 57/197: installer: Add a console-keymap service., Danny Milosavljevic, 2017/07/03
- 69/197: installer: Remove "continue" button from host name page., Danny Milosavljevic, 2017/07/03
- 58/197: installer: Add flags to indicate network interface status., Danny Milosavljevic, 2017/07/03
- 72/197: installer: Use --fallback when installing., Danny Milosavljevic, 2017/07/03
- 73/197: installer: Correct behaviour of push-cursor and pop-cursor procedures.,
Danny Milosavljevic <=
- 77/197: installer: New procedure: page-enter., Danny Milosavljevic, 2017/07/03
- 82/197: installer: Rename 'file-browser.scm' to 'key-map.scm'., Danny Milosavljevic, 2017/07/03
- 63/197: installer: Change essid --> wireless., Danny Milosavljevic, 2017/07/03
- 70/197: installer: Rename "file-browser" -> "time-zone"., Danny Milosavljevic, 2017/07/03
- 81/197: installer: Make all windows with ports scrollable., Danny Milosavljevic, 2017/07/03
- 62/197: installer: Add page with which the wifi password can be entered., Danny Milosavljevic, 2017/07/03
- 75/197: installer: Remove pointless calls to delwin., Danny Milosavljevic, 2017/07/03
- 87/197: installer: Minor cleanup., Danny Milosavljevic, 2017/07/03
- 79/197: installer: Rename "Back" buttons to "Cancel"., Danny Milosavljevic, 2017/07/03
- 98/197: installer: Correct bug detecting a wireless interface., Danny Milosavljevic, 2017/07/03