Results 17 issues of Gábor Melis

and a bonus.

Only when generating HTML output for now.

This should produce a warning _when printed_: ``` [something][non-existent] ```

On Clozure Common Lisp Version 1.12 (v1.12) LinuxX8664. After defining a symbol macro with COMPILE-FILE + LOAD, source location is not available. ``` (define-symbol-macro sss 7) (ccl:find-definition-sources 'sss) => NIL...

``` $ ls -l local-projects/ mgl-pax -> ../../own/mgl-pax $ cat system-index.txt /home/mega/own/mgl-pax/mgl-pax.asd ``` Note that the pathname in system-index.txt is absolute. This is on SBCL, and can be remedied by...

Consider the following repl transcript: ``` CL-USER(1): (lisp-implementation-version) "1.8.0" "OpenJDK_64-Bit_Server_VM-Debian-11.0.13+8-post-Debian-1deb11u1" "amd64-Linux-5.10.46-5rodete1-amd64" CL-USER(2): (defmacro fff (form) `(eq ',form ',form)) FFF CL-USER(3): (funcall (compile nil (lambda () (defun ggg () (fff (1+...

I'm using the per-block implementation in `parse-doc`, but it's still fairly easy to run out of memory with large `%block`s with something like this: ``` CL-USER> (time (let ((input (with-output-to-string...