From 7d46193ea358ec2ed928c287d55012b04c6f7d76 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Mon, 28 Jul 2025 15:37:57 +0200 Subject: [PATCH] Print IR during typical compilation --- editor/editor.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor.lisp b/editor/editor.lisp index 87a3430..ba6a2cd 100644 --- a/editor/editor.lisp +++ b/editor/editor.lisp @@ -762,7 +762,7 @@ Additionally ensures correct line numbers on the way, as a bonus." (let* ((src (buffer-string (current-buffer *editor*))) (bytes (handler-case - (usc:compile-string-to-bytes src) + (usc:compile-string-to-bytes src :print-ir-p t) (usc:usc-error (c) (let ((source (cdr (usc:source c)))) (compile-fail-prompt c (car source) (cdr source)))