From 27a17b0e626c48e8a93db0b22ecc333246063f42 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Fri, 6 May 2005 16:54:12 +0000 Subject: [PATCH] (make-x11-color-handler): don't use #\sp. Apparently doesn't work on all platforms. --- ChangeLog | 5 +++++ scm/x11-color.scm | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 88ff052768..ce60507630 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-05-06 Han-Wen Nienhuys + + * scm/x11-color.scm (make-x11-color-handler): don't use + #\sp. Apparently doesn't work on all platforms. + 2005-05-06 Graham Percival * Documentation/user/advanced-notation.itely, putting.itely, diff --git a/scm/x11-color.scm b/scm/x11-color.scm index e7f83bbc6d..e738d35d67 100644 --- a/scm/x11-color.scm +++ b/scm/x11-color.scm @@ -673,11 +673,11 @@ (if (string? arg) (if - (string-index arg #\sp) + (string-index arg #\ ) (begin (string-capitalize! arg) (let - ((arg-list (string-split arg #\sp))) + ((arg-list (string-split arg #\ ))) (string->symbol (let append-all ((x arg-list)) (if -- 2.39.5