aboutsummaryrefslogtreecommitdiff
path: root/src/bigloo/color.scm
diff options
context:
space:
mode:
authorLudovic Court`es2005-06-15 13:33:39 +0000
committerLudovic Court`es2005-06-15 13:33:39 +0000
commitd75461bc06e1cba0f29990a2604a4a86cd1c0679 (patch)
treec74b4eec97f8f0c41c10c0a5ab789a0274471e19 /src/bigloo/color.scm
parentfc42fe56a57eace2dbdb31574c2e161f0eacf839 (diff)
downloadskribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.tar.gz
skribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.tar.lz
skribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.zip
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
Diffstat (limited to 'src/bigloo/color.scm')
-rw-r--r--src/bigloo/color.scm4
1 files changed, 2 insertions, 2 deletions
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)))))