From 99c9956461dae1233f9338e6670fb423e2850c0d Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 12 Oct 1990 01:40:49 +0000 Subject: [PATCH] Fixed compiler notification to dink the error/warning count. --- hemlock/lispeval.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hemlock/lispeval.lisp b/hemlock/lispeval.lisp index 3d27b6652..bc3ef3f84 100644 --- a/hemlock/lispeval.lisp +++ b/hemlock/lispeval.lisp @@ -166,6 +166,9 @@ :message message :line line))) (message "~A" message) + (case severity + (:error (incf (note-errors note))) + (:warning (incf (note-warnings note)))) (let ((region (case (note-kind note) (:compile (note-region note)) -- GitLab