I've posted the wrong patch in my first message, it was missing a line, here's the correct one:<br><br>--- slime.el.orig    2009-03-30 19:01:56.781250000 -0400<br>+++ slime.el    2009-12-10 00:58:25.843750000 -0500<br>
@@ -1040,6 +1040,9 @@<br>                (set-window-buffer popup-window old-buffer))))<br>       (when (window-live-p selected-window)<br>         (select-window selected-window)))<br>+    (when sldb-last-window-configuration<br>
+      (set-window-configuration sldb-last-window-configuration)<br>+      (setq sldb-last-window-configuration nil))<br>     (kill-local-variable 'slime-popup-restore-data)))<br> <br> (defmacro slime-save-local-variables (vars &rest body)<br>
@@ -4069,6 +4072,8 @@<br>   ;;(when msg (slime-insert-transcript-delimiter msg))<br>   ;;(setq slime-repl-popup-on-output (not no-popups))<br>   (setq cont (or cont #'slime-display-eval-result))<br>+  (when (null sldb-last-window-configuration)<br>
+    (setq sldb-last-window-configuration (current-window-configuration)))<br>   (slime-rex (cont (buffer (current-buffer))) (form)<br>     ((:ok value) (slime-eval-with-transcript-cont t value cont buffer))<br>     ((:abort) (slime-eval-with-transcript-cont nil nil nil buffer))))<br>
@@ -5158,6 +5163,9 @@<br>   :group 'slime-debugger<br>   :type 'integer)<br> <br>+(defvar sldb-last-window-configuration nil<br>+  "Last window configuration before creating a new sldb buffer.")<br>+<br>
  <br> ;;;;; Local variables in the debugger buffer<br> <br><br><br><div class="gmail_quote">On Thu, Dec 10, 2009 at 12:55 AM, Nicolas Buduroi <span dir="ltr"><<a href="mailto:nbuduroi@gmail.com">nbuduroi@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi, I've been using slime casually for some time now and something always annoyed me, when the debug window pop up, it changes the size of the second window if there's one. I've searched for a ways to fix this behavior many times, but never found any simple solution. So today I've got myself into the code and made some changes. It works but the code is not really correct, one problem is that if you dig farther than the first cause and then use abort, it will hide the remaining debug buffers by restoring windows to their prior state. Can someone help me improve that code or show me a better way to achieve this?<br>

<br>
Here's the patch:<br>
<br>
--- slime.el.orig    2009-03-30 19:01:56.781250000 -0400<br>
+++ slime.el    2009-12-10 00:28:27.984375000 -0500<br>
@@ -1040,6 +1040,8 @@<br>
               (set-window-buffer popup-window old-buffer))))<br>
      (when (window-live-p selected-window)<br>
        (select-window selected-window)))<br>
+    (when sldb-last-window-configuration<br>
+      (set-window-configuration sldb-last-window-configuration))<br>
    (kill-local-variable 'slime-popup-restore-data)))<br>
<br>
(defmacro slime-save-local-variables (vars &rest body)<br>
@@ -4069,6 +4071,8 @@<br>
  ;;(when msg (slime-insert-transcript-delimiter msg))<br>
  ;;(setq slime-repl-popup-on-output (not no-popups))<br>
  (setq cont (or cont #'slime-display-eval-result))<br>
+  (when (null sldb-last-window-configuration)<br>
+    (setq sldb-last-window-configuration (current-window-configuration)))<br>
  (slime-rex (cont (buffer (current-buffer))) (form)<br>
    ((:ok value) (slime-eval-with-transcript-cont t value cont buffer))<br>
    ((:abort) (slime-eval-with-transcript-cont nil nil nil buffer))))<br>
@@ -5158,6 +5162,9 @@<br>
  :group 'slime-debugger<br>
  :type 'integer)<br>
<br>
+(defvar sldb-last-window-configuration nil<br>
+  "Last window configuration before creating a new sldb buffer.")<br>
+<br>
 ;;;;; Local variables in the debugger buffer<br>
<br>
Thanks<br>
</blockquote></div><br>