Is anyone else seeing strange behavior in DrRacket since this latest round of DrRacket-related commits?  Here&#39;s what I&#39;m seeing: <div><br></div><div>-With definitions/interactions side by side, sometimes the vertical scroll bar in the interactions window disappears for no reason.</div>
<div>-Saving a file can sometimes render the definitions window unresponsive.  Occasionally the definitions window will still respond but won&#39;t allow me to edit code anymore. </div><div>-If I switch from one tab to another and then back to the original, the definitions window sometimes becomes blank.</div>
<div>-If I run a program that raises an error, viewing the stack trace by clicking on the icon in the interactions window can cause DrRacket to raise an error (I only saw this once, and unfortunately I don&#39;t have the error message).</div>
<div>-The status bar area that displays information about background expansion can arbitrarily disappear, however the label providing the information (e.g. &quot;Background expansion finished&quot;) remains and appears to be superimposed on top of the definitions window.</div>
<div><br></div><div>I don&#39;t have specific steps to reproduce yet so I&#39;m not able to submit bug report(s), but I&#39;ll see what I can come up with.  Maybe I&#39;m the only one experiencing this.</div><div><br></div>
<div><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Nov 26, 2012 at 10:55 AM,  <span dir="ltr">&lt;<a href="mailto:robby@racket-lang.org" target="_blank">robby@racket-lang.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">robby has updated `master&#39; from 569af52ffc to ba89a5da92.<br>
  <a href="http://git.racket-lang.org/plt/569af52ffc..ba89a5da92" target="_blank">http://git.racket-lang.org/plt/569af52ffc..ba89a5da92</a><br>
<br>
=====[ One Commit ]=====================================================<br>
Directory summary:<br>
 100.0% collects/framework/private/<br>
<br>
~~~~~~~~~~<br>
<br>
ba89a5d Robby Findler &lt;<a href="mailto:robby@racket-lang.org">robby@racket-lang.org</a>&gt; 2012-11-26 07:54<br>
:<br>
| fix bug in error checking code<br>
:<br>
  M collects/framework/private/text.rkt | 14 ++++++++------<br>
<br>
=====[ Overall Diff ]===================================================<br>
<br>
collects/framework/private/text.rkt<br>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
--- OLD/collects/framework/private/text.rkt<br>
+++ NEW/collects/framework/private/text.rkt<br>
@@ -42,12 +42,14 @@<br>
 (define-struct rectangle (left top right bottom style color) #:inspector #f)<br>
<br>
 (define (build-rectangle left top right bottom style color)<br>
-  (when (right . &lt; . left)<br>
-    (error &#39;build-rectangle &quot;found right to the right of left: ~s&quot;<br>
-           (list left top right bottom style color)))<br>
-  (when (bottom . &lt; . top)<br>
-    (error &#39;build-rectangle &quot;found bottom above top: ~s&quot;<br>
-           (list left top right bottom style color)))<br>
+  (unless (or (symbol? right) (symbol? left))<br>
+    (when (right . &lt; . left)<br>
+      (error &#39;build-rectangle &quot;found right to the right of left: ~s&quot;<br>
+             (list left top right bottom style color))))<br>
+  (unless (or (symbol? top) (symbol? bottom))<br>
+    (when (bottom . &lt; . top)<br>
+      (error &#39;build-rectangle &quot;found bottom above top: ~s&quot;<br>
+             (list left top right bottom style color))))<br>
   (make-rectangle left top right bottom style color))<br>
<br>
<br>
</blockquote></div><br></div>