You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Defining it as (defvar *name-counter* 0) fixed the bug.
The text was updated successfully, but these errors were encountered:
muswawir
changed the title
Uninitialised *name-counter* in pdf.lisp introduces a bug tt::render-document.
Uninitialised *name-counter* in pdf.lisp introduces a bug in tt::render-document.
Sep 30, 2024
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.The text was updated successfully, but these errors were encountered: