diff --git a/code/parse-time.lisp b/code/parse-time.lisp
index f9d2b1aefd78d7570e1cad1dff738aa884c0f0b1..55bbc0655838848535d7574b890b8a14519c1aa2 100644
--- a/code/parse-time.lisp
+++ b/code/parse-time.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/parse-time.lisp,v 1.9 2003/01/03 21:14:25 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/parse-time.lisp,v 1.10 2003/08/16 11:45:47 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 
@@ -569,7 +569,8 @@
 	   (if (<= 0 hour 11)
 	       (setf (decoded-time-hour parsed-values)
 		     (mod (+ hour 12) 24))))
-	  (t (error "~A isn't AM/PM - this shouldn't happen.")))))
+	  (t (error "~A isn't AM/PM - this shouldn't happen."
+		    form-value)))))
 
 ;;; Internet numerical time zone, e.g. RFC1123, in hours and minutes.
 (defun deal-with-izone (form-value parsed-values)
diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp
index 39f3c053016d015b3d2b4a3a512f919d2f945d64..104e649b0bc3098c87df799a76ca12f07ddf6e8c 100644
--- a/compiler/fndb.lisp
+++ b/compiler/fndb.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.123 2003/08/05 15:50:28 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.124 2003/08/16 11:45:47 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1228,3 +1228,8 @@
   (simple-string index index simple-string index index)
   (or index null)
   (foldable flushable))
+
+(defknown compiler-error (string &rest t) nil ())
+(defknown (compiler-warning compiler-note compiler-mumble)
+    (string &rest t) (values) ())
+
diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp
index 73576b948f8ee03127499bbb375e3b8c51ebdfac..7306f17f4ade7e224b7a8a23ade0dcb310736cb8 100644
--- a/compiler/ir1util.lisp
+++ b/compiler/ir1util.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.93 2003/08/06 19:01:17 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.94 2003/08/16 11:45:47 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1970,7 +1970,8 @@ these can be NIL if unavailable or inapplicable.")
   (note-message-repeats)
   (setq *last-error-context* nil)
   (apply #'format *compiler-error-output* format-string format-args)
-  (force-output *compiler-error-output*))
+  (force-output *compiler-error-output*)
+  (values))
 
 
 ;;; Find-Component-Name  --  Interface
@@ -2056,7 +2057,8 @@ these can be NIL if unavailable or inapplicable.")
 ;;;
 (defun compiler-warning (format-string &rest format-args)
   (declare (string format-string))
-  (apply #'warn format-string format-args))
+  (apply #'warn format-string format-args)
+  (values))
 ;;;
 (defun compiler-note (format-string &rest format-args)
   (declare (string format-string))
@@ -2064,7 +2066,8 @@ these can be NIL if unavailable or inapplicable.")
 	      (policy *compiler-error-context* (= brevity 3))
 	      (policy nil (= brevity 3)))
     (warn 'simple-style-warning :format-control format-string
-	  :format-arguments format-args)))
+	  :format-arguments format-args))
+  (values))
 
 
 ;;;; Undefined warnings:
diff --git a/compiler/new-assem.lisp b/compiler/new-assem.lisp
index 8be49d0188eb6c2ffc69b7c70853fd064d78f3c5..1c877808e0a33e4be8fcb83ff68d899150e01cc6 100644
--- a/compiler/new-assem.lisp
+++ b/compiler/new-assem.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/new-assem.lisp,v 1.32 2002/11/14 16:54:38 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/new-assem.lisp,v 1.33 2003/08/16 11:45:47 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -950,7 +950,7 @@
   (declare (type segment segment)
 	   (type annotation note))
   (when (annotation-posn note)
-    (error "Attempt to emit ~S for the second time."))
+    (error "Attempt to emit ~S for the second time." note))
   (setf (annotation-posn note) (segment-current-posn segment))
   (setf (annotation-index note) (segment-current-index segment))
   (let ((last (segment-last-annotation segment))
diff --git a/compiler/saptran.lisp b/compiler/saptran.lisp
index 86ed13e91d8e0deaf282c56b68f88798845e481e..477583186b3d85ad050392a37105e306b0dc90b7 100644
--- a/compiler/saptran.lisp
+++ b/compiler/saptran.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/saptran.lisp,v 1.14 2003/06/05 18:49:01 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/saptran.lisp,v 1.15 2003/08/16 11:45:47 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -54,7 +54,7 @@
 	 symbol))
       (t
        (compiler-error
-        "FOREIGN-SYMBOL-ADDRESS flavor ~S is not :CODE or :DATA")))))
+        "FOREIGN-SYMBOL-ADDRESS flavor ~S is not :CODE or :DATA" flav)))))
 
 (defknown (sap< sap<= sap= sap>= sap>)
 	  (system-area-pointer system-area-pointer) boolean
diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp
index 8c8d8cdb2fb8e90b16c4ca14114e20a3c949bcbd..a94cd63f7892a9bc22906a3fa2e34f51080c3af0 100644
--- a/compiler/srctran.lisp
+++ b/compiler/srctran.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.124 2003/07/26 19:21:24 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.125 2003/08/16 11:45:46 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -3359,21 +3359,27 @@
 ;;; string is a function (i.e. formatter), then convert the call to format to
 ;;; just a funcall of that function.
 ;;;
-(defun check-format-args (string args)
+
+(defun check-format-args-2 (min-args max-args args context)
+  (when min-args
+    (let ((nargs (length args)))
+      (cond ((stringp min-args)
+	     (compiler-warning "~a" min-args))
+	    ((< nargs min-args)
+	     (compiler-warning "~s: too few args (~d), need at least ~d"
+			       context nargs min-args))
+	    ((> nargs max-args)
+	     (compiler-note "~s: too many args (~d), wants at most ~d"
+			    context nargs max-args))))))
+
+(defun check-format-args-1 (string args context)
   (multiple-value-bind (min-args max-args)
       (format::min/max-format-arguments-count string)
-    (when min-args
-      (let ((nargs (length args)))
-	(cond ((stringp min-args)
-	       (compiler-warning "~a" min-args))
-	      ((< nargs min-args)
-	       (compiler-warning
-		"Too few args (~d) to FORMAT, need at least ~d"
-		nargs min-args))
-	      ((> nargs max-args)
-	       (compiler-note
-		"Too many args (~d) to FORMAT, wants at most ~d"
-		nargs max-args)))))))
+    (check-format-args-2 min-args max-args args context)))
+
+(defun check-format-args (string-cont args context)
+  (when (constant-continuation-p string-cont)
+    (check-format-args-1 (continuation-value string-cont) args context)))
 
 ;;;
 ;;; Note that two DEFTRANSFORMs differing in their :POLICY only cannot
@@ -3384,14 +3390,13 @@
 	 (unless (constant-continuation-p control)
 	   (give-up "Control string is not a constant."))
 	 (let ((string (continuation-value control)))
-	   (check-format-args string args)
+	   (check-format-args-1 string args 'format)
 	   (let ((arg-names (loop repeat (length args) collect (gensym))))
 	     `(lambda (dest control ,@arg-names)
 		(declare (ignore control))
 		(format dest (formatter ,string) ,@arg-names)))))
 	(t
-	 (when (constant-continuation-p control)
-	   (check-format-args (continuation-value control) args))
+	 (check-format-args control args 'format)
 	 (give-up))))
 
 (deftransform format ((stream control &rest args) (stream function &rest t) *
@@ -3409,3 +3414,14 @@
        (funcall control *standard-output* ,@arg-names)
        nil)))
 
+(macrolet ((define-format-checker (name)
+	     `(deftransform ,name ((format &rest args)
+				   (simple-string &rest t) *)
+		(check-format-args format args ',name)
+		(give-up))))
+  (define-format-checker error)
+  (define-format-checker warn)
+  (define-format-checker compiler-error)
+  (define-format-checker compiler-warning)
+  (define-format-checker compiler-note)
+  (define-format-checker compiler-mumble))
diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt
index 6cda15e6d0b0df9e737a449bdf0905b1648113d2..7842c5acf1f9242bd8e4fcd4087e406a51ec4f63 100644
--- a/general-info/release-19a.txt
+++ b/general-info/release-19a.txt
@@ -36,7 +36,8 @@ New in this release:
      - Weak hash tables have been added for x86 systems.
      - Local functions are now named (FLET <name> ...) or 
        (LABELS <name> ...).
-     - Compiler checking control string and number of args to FORMAT.
+     - Compiler checking control string and number of args to FORMAT,
+       ERROR and WARN.
      - TRACE automatically using encapsulation when function-end
        breakpoints cannot be used.
      - INSPECT working on CLOS instances.