From 100086afa2eec5c5dd2819a66cd3ce63367ffcbe Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Wed, 9 Jul 2025 14:38:28 +0200 Subject: [PATCH] Improve tokenizer and parser error message header --- wip-duuqnd/user-side-compiler/error-handling.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wip-duuqnd/user-side-compiler/error-handling.lisp b/wip-duuqnd/user-side-compiler/error-handling.lisp index cc41c17..4bfc669 100644 --- a/wip-duuqnd/user-side-compiler/error-handling.lisp +++ b/wip-duuqnd/user-side-compiler/error-handling.lisp @@ -36,10 +36,10 @@ (point-out-source (source c)))))) (define-condition tokenizer-error (usc-error) - ((%context-string :initform "Error in tokenizer:"))) + ((%context-string :initform "Tokenizing error:"))) (define-condition parser-error (usc-error) - ()) + ((%context-string :initform "Syntax error:"))) (defun error-parser (source format-control &rest format-arguments)