From 693f0353b2325ee5e88f4604740cc77c1b664a45 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 11 Mar 1991 16:05:25 +0000
Subject: [PATCH] Don't increment note count when the note is inhibited by the
 INHIBIT-WARNINGS quality.

---
 compiler/ir1util.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp
index 0a994e0da..5d327ace6 100644
--- a/compiler/ir1util.lisp
+++ b/compiler/ir1util.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.31 1991/03/10 18:30:42 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.32 1991/03/11 16:05:25 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1701,10 +1701,10 @@ inlines
   (print-error-message :warning format-string format-args))
 ;;;
 (defun compiler-note (format-string &rest format-args)
-  (incf *compiler-note-count*)
   (unless (if *compiler-error-context*
 	      (policy *compiler-error-context* (= brevity 3))
 	      (policy nil (= brevity 3)))
+    (incf *compiler-note-count*)
     (print-error-message :note format-string format-args)))
 
 
-- 
GitLab