Open muswawir opened 1 month ago
Setup: sbcl-2.4.9, Ubuntu 24.04. I was using tt::render-document when I found that pdf::*name-counter* was not initialised. Defined as (defvar *name-counter*) and the macro wasn't working.
tt::render-document
pdf::*name-counter*
(defvar *name-counter*)
Defining it as (defvar *name-counter* 0) fixed the bug.
(defvar *name-counter* 0)
Setup: sbcl-2.4.9, Ubuntu 24.04. I was using
tt::render-document
when I found thatpdf::*name-counter*
was not initialised. Defined as(defvar *name-counter*)
and the macro wasn't working.Defining it as
(defvar *name-counter* 0)
fixed the bug.