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

[xyzzy:01384] Re: saveconf



亀井さん、こんにちは。

        Fri, 4 Dec 1998 11:47:19 +0900 の
        [xyzzy:01382] Re: saveconf
        に関するメールにお答えします。


> うーん、[さまざま]-[終了時の状態を覚えとく]では不満?(^^;

思い出しました。夏ごろ、ウインドウ管理はめんどうと
おっしゃってましたね。
でも、next-window があるから、だいじょうぶかと...。

(defun window-list ()
  (let (first-window windows w)
    (setq first-window (selected-window))
    (setq windows (cons first-window nil))
    (setq w (next-window first-window))
    (while (not (equal w first-window))
      (setq windows (cons w windows))
      (setq w (next-window w)))
    windows))

これがあってもだめですか?

--------
須田誠也
EZU11330@xxxxxxxxxxx

Index Home