diff options
Diffstat (limited to 'db2html.scm')
-rw-r--r-- | db2html.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db2html.scm b/db2html.scm index 8ad97e1..9b4709f 100644 --- a/db2html.scm +++ b/db2html.scm @@ -356,7 +356,7 @@ (case (string-ref dstr len) ((#\*) 'nary) ((#\+) 'nary1) - (else 'single))) + (else (if (eq? 'boolean type) 'boolean 'single)))) (case (string-ref dstr len) ((#\* #\+) (set! type (string->symbol (substring dstr 0 len))) |