From 14fb15bfbd9e41aa05bfa7e7d3fdc3afe97b65cb Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Fri, 3 Apr 2020 23:49:20 +0200 Subject: [PATCH] Force the summary file to be opened in UTF-8. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After all the default summary output contains the “✓” character and that won't fit in the ascii external format. Fixes #1103. --- src/utils/monitor.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/monitor.lisp b/src/utils/monitor.lisp index 696eb50..2fb66d2 100644 --- a/src/utils/monitor.lisp +++ b/src/utils/monitor.lisp @@ -340,6 +340,7 @@ (let* ((summary-stream (when *summary-pathname* (open *summary-pathname* :direction :output + :external-format :utf-8 :if-exists :rename :if-does-not-exist :create))) (*report-stream* (or summary-stream *standard-output*)))