erc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Erc-commit] [commit][emacs22] Fix multi-tty emacs bug.


From: mwolson
Subject: [Erc-commit] [commit][emacs22] Fix multi-tty emacs bug.
Date: Sun, 14 Oct 2007 00:48:23 -0400

commit c3ad025129e82263689cede9782b71b675cb304e
Author: Michael Olson <address@hidden>
Date:   Sun Aug 6 05:08:36 2006 +0000

    Fix multi-tty emacs bug.
    
    * erc.el (erc-arrange-session-in-multiple-windows): Fix bug with
      multi-tty Emacs.
    git-archimport-id: address@hidden/erc--main--0--patch-33

diff --git a/ChangeLog b/ChangeLog
index 0d54e14..abf1d2f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-06  Michael Olson  <address@hidden>
+
+       * erc.el (erc-arrange-session-in-multiple-windows): Fix bug with
+       multi-tty Emacs.
+
 2006-08-05  Michael Olson  <address@hidden>
 
        * erc-log.el (erc-log-standardize-name): New function that returns
diff --git a/erc.el b/erc.el
index 4d28ce5..2c177a5 100644
--- a/erc.el
+++ b/erc.el
@@ -5899,7 +5899,8 @@ All windows are opened in the current frame."
       (setq bufs (cdr bufs))
       (while bufs
        (split-window)
-       (switch-to-buffer-other-window (car bufs))
+       (other-window 1)
+       (switch-to-buffer (car bufs))
        (setq bufs (cdr bufs))
        (balance-windows)))))
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]