Skip to content
Snippets Groups Projects
Commit 06645b79 authored by ram's avatar ram
Browse files

Deleted some dead code that the last change detected (!)

Also, strengthened some global variable type declarations.
parent 3438a42f
No related branches found
No related tags found
No related merge requests found
...@@ -1413,7 +1413,7 @@ inlines ...@@ -1413,7 +1413,7 @@ inlines
;;; The number of times that the last error message has been emitted, so that ;;; The number of times that the last error message has been emitted, so that
;;; we can compress duplicate error messages. ;;; we can compress duplicate error messages.
(defvar *last-message-count* 0) (defvar *last-message-count* 0)
(proclaim '(type index *last-message-count*))
;;; Note-Message-Repeats -- Internal ;;; Note-Message-Repeats -- Internal
;;; ;;;
...@@ -1447,9 +1447,6 @@ inlines ...@@ -1447,9 +1447,6 @@ inlines
(*print-length* *error-print-length*) (*print-length* *error-print-length*)
(stream *compiler-error-output*) (stream *compiler-error-output*)
(context (find-error-context format-args))) (context (find-error-context format-args)))
(unless stream (return-from print-error-message (undefined-value)))
(cond (cond
(context (context
(let ((in (compiler-error-context-context context)) (let ((in (compiler-error-context-context context))
...@@ -1507,7 +1504,7 @@ inlines ...@@ -1507,7 +1504,7 @@ inlines
;;; Keep track of how many times each kind of warning happens. ;;; Keep track of how many times each kind of warning happens.
;;; ;;;
(proclaim '(type unsigned-byte *compiler-error-count* *compiler-warning-count* (proclaim '(type index *compiler-error-count* *compiler-warning-count*
*compiler-note-count*)) *compiler-note-count*))
(defvar *compiler-error-count* 0) (defvar *compiler-error-count* 0)
(defvar *compiler-warning-count* 0) (defvar *compiler-warning-count* 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment