On 2014-09-15 21:14, Peter Bex wrote:
> The upshot of all this is that CHICKEN 5 can now install its eggs!

Cool!

chicken-uninstall is currently borked due to the use of a srfi-13
procedure. Here's a tiny patch that removes it.

Evan
>From 017a16b5f24b2f654355d8b4a9a710d962683832 Mon Sep 17 00:00:00 2001
From: Evan Hanson <ev...@foldling.org>
Date: Tue, 16 Sep 2014 08:43:23 +1200
Subject: [PATCH] Remove use of srfi-13 string-trim-both from yes-or-no in
 utils.scm

---
 utils.scm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils.scm b/utils.scm
index d102272..cedd952 100644
--- a/utils.scm
+++ b/utils.scm
@@ -183,7 +183,7 @@ C_confirmation_dialog(char *msg, char *caption, int def, 
int abort) { return -1;
                  ((0) "no")
                  ((1) "yes")
                  (else "abort")))
-             (string-trim-both (read-line))))
+             (read-line)))
        (let loop ()
          (unless gui
            (printf "~%~A (yes/no~a) " str (if abort "/abort" ""))
-- 
1.7.10.4

_______________________________________________
Chicken-hackers mailing list
Chicken-hackers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-hackers

Reply via email to