emacs-devel
[Top][All Lists]
Advanced

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

Re: describe-{function,variable} shrinks frame (GTK+/KDE)


From: martin rudalics
Subject: Re: describe-{function,variable} shrinks frame (GTK+/KDE)
Date: Sat, 17 Nov 2007 10:16:17 +0100
User-agent: Mozilla Thunderbird 1.0 (Windows/20041206)

> This recipe isn't completely reliable: what seems to be constant are the
> prior invocation of Info and unsplitting the windows between the
> describe-* calls; otherwise, sometimes the shrinkage happens after the
> first call to describe-{function,variable}, sometimes it takes several
> iterations of steps 2.-5.  The function/variable names are examples,
> probably any will do.  Once the shrinkage begins, it progresses with
> subsequent describe-* calls.

Leaving an Emacs frame for some time unattended with

(defun foo ()
  (interactive)
  (while t
    (split-window)
    (when (zerop (logand (random) 1))
      (other-window 1))
    (sit-for 0.5)
    (if (zerop (logand (random) 1))
        (delete-window)
      (delete-other-windows))
    (sit-for 0.5)))

doesn't show the behavior (just to rule out more trivial causes like
window splitting / deleting)?





reply via email to

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