On Fri, May 05, 2000 at 11:10:59AM -0400, Paul Kinnucan wrote:

> Hi Brad,
>
> This seems to be an XEmacs compatility problem relating to differences
> in how XEmacs and Emacs handle frames. Fixing JDEbug XEmacs
> compatibility problems is low on my priority list. I would prefer that
> XEmacs users submit patches as I don't use XEmacs myself. Failing
> that, I'll try to get to it ASAP.
>
> - paul


One patch coming up.  The problem was the existing call is obsoleted
is XEmacs.  I know changing frame-first-window to frame-highest-window
fixes it for me.  Its been to a dwe years since I'ce done lisp so you
may want to verify that I got my if construct correct. 

Brad

--

--- jde-2.1.6beta23/lisp/jde-dbs.el     Fri Apr 14 05:29:28 2000
+++ ./jde-dbs.el        Fri May  5 12:51:04 2000
@@ -2438,7 +2438,10 @@
               (buf (oref process threads-buf)))
          (set-window-configuration (oref process win-cfg))
          (set-window-buffer -          (next-window (frame-first-window)) buf)
+          (if (not jde-xemacsp)
+            (next-window (frame-first-window))
+              (next-window (frame-highest-window)) )
+            buf)
          (set-buffer buf)
          (let ((inhibit-read-only t))
            (erase-buffer)) 

Reply via email to