Skip to content

Commit

Permalink
make the output-buffer larger
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dkochmanski committed Feb 19, 2024
1 parent 594ad45 commit 418ab40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dependent.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 418ab40

Please sign in to comment.