<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/63d1896f5c0d28371d9a7356d0556fe01120f637">63d1896f</a></strong>
<div>
<span>by Raymond Toy</span>
<i>at 2015-05-23T11:47:18Z</i>
</div>
<pre class='commit-message'>Fix warnings about destructive functions discarding their results
(sort an delete)</pre>
</li>
</ul>
<h4>2 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
src/hemlock/bit-screen.lisp
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
src/hemlock/eval-server.lisp
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/63d1896f5c0d28371d9a7356d0556fe01120f637#diff-0'>
<strong>
src/hemlock/bit-screen.lisp
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/hemlock/bit-screen.lisp
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/hemlock/bit-screen.lisp
</span><span style="color: #aaaaaa">@@ -1581,10 +1581,11 @@
</span>     ;; Probably shoulds insertion sort them, but I'm lame.
     ;;
     (xlib:with-state (xparent)
<span style="color: #000000;background-color: #ffdddd">-      (sort affected-windows #'<
</span>-      :key #'(lambda (window)
-                    (xlib:drawable-y
-                     (bitmap-hunk-xwindow (window-hunk window))))))
<span style="color: #000000;background-color: #ddffdd">+      (setf affected-windows
+           (sort affected-windows #'<
+                 :key #'(lambda (window)
+                          (xlib:drawable-y
+                           (bitmap-hunk-xwindow (window-hunk window)))))))
</span>     (let ((start 0))
       (declare (fixnum start))
       (do ((windows affected-windows (cdr windows)))
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.common-lisp.net/cmucl/cmucl/commit/63d1896f5c0d28371d9a7356d0556fe01120f637#diff-1'>
<strong>
src/hemlock/eval-server.lisp
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/src/hemlock/eval-server.lisp
</span><span style="color: #000000;background-color: #ddffdd">+++ b/src/hemlock/eval-server.lisp
</span><span style="color: #aaaaaa">@@ -223,7 +223,7 @@
</span>             (find-if-not #'null array
                               :from-end t
                               :end current)))))
<span style="color: #000000;background-color: #ffdddd">-    (delete nil array)
</span><span style="color: #000000;background-color: #ddffdd">+    (setf array (delete nil array))
</span>     (setf (server-info-error-index server)
          (position current array))))
 
</code></pre>

<br>
</li>

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

<br>
<a href="https://gitlab.common-lisp.net/cmucl/cmucl/commit/63d1896f5c0d28371d9a7356d0556fe01120f637">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/63d1896f5c0d28371d9a7356d0556fe01120f637"}}</script>
</p>
</div>
</body>
</html>