From 34c340fc7b3fa5c7218b4e42a37e8267c7258245 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 6 Aug 2020 18:38:11 +0200 Subject: Do not use 'guile-2.0' as a 'cond-expand' key since it doesn't exist. * src/guile/skribilo.scm (skribilo): Reverse 'cond-expand' logic for _IOFBF handling. --- src/guile/skribilo.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guile/skribilo.scm b/src/guile/skribilo.scm index 223fffe..592601c 100644 --- a/src/guile/skribilo.scm +++ b/src/guile/skribilo.scm @@ -421,8 +421,8 @@ options." (setvbuf (*skribilo-output-port*) (cond-expand - (guile-2.0 _IOFBF) - (else 'block)) + (guile-2.2 'block) ;Guile 2.2 and 3.0 + (else _IOFBF)) 16384) (if input-file -- cgit v1.2.3