From d75461bc06e1cba0f29990a2604a4a86cd1c0679 Mon Sep 17 00:00:00 2001 From: Ludovic Court`es Date: Wed, 15 Jun 2005 13:33:39 +0000 Subject: Various bugfixes; new `file-name-proc' custom for the HTML engine. * tools/skribebibtex/bigloo/skribebibtex.scm (skribebibtex): Don't enclose `ident' in double quotes. * doc/user/user.skb: Made "Introduction" a chapter rather than a section; likewise for its subsections. * skr/html.skr (itemize): Produce an anchor if `ident' is not false. (enumerate): Likewise. (html-file-default): New procedure. (file-name-proc): New custom. * src/bigloo/color.scm (*color-parser*): Fixed the "black" and "white" colors (were inverted). git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-1 --- src/bigloo/color.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/bigloo/color.scm b/src/bigloo/color.scm index e40638b..e481d65 100644 --- a/src/bigloo/color.scm +++ b/src/bigloo/color.scm @@ -657,9 +657,9 @@ ((string-ci=? name "none") (values 0 0 0)) ((string-ci=? name "black") - (values #xff #xff #xff)) - ((string-ci=? name "white") (values 0 0 0)) + ((string-ci=? name "white") + (values #xff #xff #xff)) (else (rgb-grep name))))) -- cgit v1.2.3