> The recent change you made in > > commit 986621ae1ff4d3cfad31adb20216f1f71ce0747c > Author: Stefan Monnier > Date: Tue Nov 12 23:12:07 2024 -0500 > > (with-peg-rules): Build proper `peg-function`s > > * lisp/progmodes/peg.el (with-peg-rules): Use the new (FUNC EXP) > feature in `cl-labels`. > > broke org-ql's PEG parser. I tried to reproduce it with the number > parser example given in the Elisp Info manual but failed. With the > above change, I get an assertion error when I try to use org-ql-find: > > Debugger entered--Lisp error: (cl-assertion-failed (lexical-binding nil)) Thanks. Until this is fixed on `master`, the patch below will fix `org-ql` to use lexical-binding for that code (like it already does for all the rest of the code). [ It also removes a NUL byte from the file which caused some tools to treat it as a binary file. ] Stefan