From 418ab404c3305ad1e853ba2f240f4416748fb55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Mon, 19 Feb 2024 09:16:28 +0100 Subject: [PATCH] make the output-buffer larger 8192 length could make sense in 1987, but right now it is too limiting. Bumping it 8x is not a big problem, but allows for larger strings to be rendered. --- dependent.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependent.lisp b/dependent.lisp index 4a943ef..92dc57e 100644 --- a/dependent.lisp +++ b/dependent.lisp @@ -28,7 +28,7 @@ ;;; The size of the output buffer. Must be a multiple of 4. -(defparameter *output-buffer-size* 8192) +(defparameter *output-buffer-size* #x10000) #+explorer (zwei:define-indentation event-case (1 1))