[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/08: installer: Remove unused procedure.
From: |
John Darrington |
Subject: |
03/08: installer: Remove unused procedure. |
Date: |
Fri, 10 Feb 2017 08:17:11 -0500 (EST) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit 439bacda1c1a722d46733a4b7eb8b2f08d7e7088
Author: John Darrington <address@hidden>
Date: Mon Feb 6 17:55:45 2017 +0100
installer: Remove unused procedure.
* gnu/system/installer/utils.scm (new-nav-form): Remove procedure.
---
gnu/system/installer/utils.scm | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git a/gnu/system/installer/utils.scm b/gnu/system/installer/utils.scm
index 082dcc7..ceedcec 100644
--- a/gnu/system/installer/utils.scm
+++ b/gnu/system/installer/utils.scm
@@ -28,7 +28,6 @@
pop-cursor
make-window-port
- new-nav-form
standard-menu-keystrokes
make-boxed-window
@@ -235,26 +234,6 @@ which will process each string before returning it."
-(define (new-nav-form button-fields)
- (new-form (let usr ((ef button-fields)
- (xpos 0)
- (acc '()))
- (if (null? ef)
- (reverse acc)
- (let* ((ff (cdr (car ef)))
- (label (car ff))
- (nf (new-field 1 (string-length label) 1 xpos 0 0)))
- (list-set! ff 1 nf)
- (set-field-buffer! nf 0 label)
- (field-opts-off! nf O_EDIT)
- (usr (cdr ef)
- (+ xpos (string-length label) 1)
- (cons nf acc)))))))
-
-
-
-
-
(define (inner boxed-window)
(match boxed-window
((inside . _)
- branch wip-installer updated (688f4f7 -> e0eeeab), John Darrington, 2017/02/10
- 08/08: gurses: Don't crash if asked for an item by an invalid index., John Darrington, 2017/02/10
- 06/08: installer: Remove whitespace., John Darrington, 2017/02/10
- 05/08: gurses: Update the cursor position when posting the form., John Darrington, 2017/02/10
- 03/08: installer: Remove unused procedure.,
John Darrington <=
- 01/08: installer: Fix the startup locale., John Darrington, 2017/02/10
- 07/08: installer: Provide the ability to add new users., John Darrington, 2017/02/10
- 04/08: installer: New page to edit user accounts., John Darrington, 2017/02/10
- 02/08: installer: Add users page., John Darrington, 2017/02/10