<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<div class='content'>
<h3>Raymond Toy pushed to branch master at <a href="https://gitlab.common-lisp.net/cmucl/cmucl">cmucl / cmucl</a></h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/b8654321e9bb003da77dbf9eabd8d69cba7e6b29">b8654321</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-08-31T20:51:55Z</i>
</div>
<pre class='commit-message'>Really don't print the herald when -quiet is given.

The previous implementation cleared *herald-items* when -quiet was
given, but if the init file loaded up items that added to
*herald-items*, then the items were still printed.  Plus, it seems odd
that -quiet actually clears *herald-items*.

So, just don't print herald if -quiet is given, but also preserve
*herald-items* so that (print-herald) would actually print the actual
herald.</pre>
</li>
</ul>
<h4>1 changed file:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/code/save.lisp
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/b8654321e9bb003da77dbf9eabd8d69cba7e6b29#diff-0'>
<strong>
src/code/save.lisp
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/code/save.lisp
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/code/save.lisp
</span><span style="color: #aaaaaa">@@ -254,8 +254,7 @@
</span>                        *compile-print* nil
                        *compile-progress* nil
                        *require-verbose* nil
<span style="color: #000000;background-color: #ffdddd">-                       *gc-verbose* nil
-                       *herald-items* nil))
</span><span style="color: #000000;background-color: #ddffdd">+                       *gc-verbose* nil))
</span>          (when (and process-command-line
                          (or (find-switch "help")
                              (find-switch "-help")))
<span style="color: #aaaaaa">@@ -280,12 +279,15 @@
</span>                        :if-does-not-exist nil)
                       (or (load "home:init" :if-does-not-exist nil)
                           (load "home:.cmucl-init"
-                                :if-does-not-exist nil))))))
-            (when process-command-line
-              (ext::invoke-switch-demons *command-line-switches*
-                                         *command-switch-demons*))
-            (when print-herald
-              (print-herald))))
<span style="color: #000000;background-color: #ddffdd">+                                 :if-does-not-exist nil)))))
+              (when process-command-line
+                (ext::invoke-switch-demons *command-line-switches*
+                                           *command-switch-demons*))
+              (when (and print-herald
+                         (not (and process-command-line
+                                   (find-switch "quiet"))))
+                ;; Don't print the herald if -quiet is given.
+                (print-herald)))))
</span>    (funcall init-function))
        (restart-lisp ()
         (unix:unix-exit
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/b8654321e9bb003da77dbf9eabd8d69cba7e6b29">View it on GitLab</a>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":"https://gitlab.common-lisp.net/cmucl/cmucl/commit/b8654321e9bb003da77dbf9eabd8d69cba7e6b29"}}</script>
</p>
</div>
</body>
</html>