bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#16793: window-state-put needs a live window


From: martin rudalics
Subject: bug#16793: window-state-put needs a live window
Date: Tue, 18 Feb 2014 22:26:54 +0100

Was this:

+       (setq window (catch 'live
+                      (walk-window-subtree
+                       (lambda (window)
+                         (when (window-live-p window)))
+                       root))))

intended to be

  (setq window (catch 'live
                 (walk-window-subtree
                  (lambda (window)
                    (when (window-live-p window)
                      (throw 'live window)))
                  root))))

I suppose?

You suppose correctly.

martin






reply via email to

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