diff options
author | Ludovic Courtès | 2020-08-06 18:38:11 +0200 |
---|---|---|
committer | Ludovic Courtès | 2020-08-06 18:38:11 +0200 |
commit | 34c340fc7b3fa5c7218b4e42a37e8267c7258245 (patch) | |
tree | ec4368f328d0e2a6c236a96868201770ddf37913 /src/guile | |
parent | e628b3623126335d62ab750cd0cd6d35b4570106 (diff) | |
download | skribilo-34c340fc7b3fa5c7218b4e42a37e8267c7258245.tar.gz skribilo-34c340fc7b3fa5c7218b4e42a37e8267c7258245.tar.lz skribilo-34c340fc7b3fa5c7218b4e42a37e8267c7258245.zip |
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.
Diffstat (limited to 'src/guile')
-rw-r--r-- | src/guile/skribilo.scm | 4 |
1 files 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 |