unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#29050: 26.0; Change in when `window-configuration-change-hook' is run
@ 2017-10-29  1:25 Drew Adams
  2017-10-29 11:19 ` martin rudalics
  0 siblings, 1 reply; 4+ messages in thread
From: Drew Adams @ 2017-10-29  1:25 UTC (permalink / raw)
  To: 29050

This change does not seem right (from NEWS):

 *** Resizing a frame no longer runs 'window-configuration-change-hook'.
 'window-size-change-functions' should be used instead.

Previously you could have a hook on 'window-configuration-change-hook'
that would take effect for frame resizings.  Now you cannot.

Perhaps someone thought that just telling users to use
'window-size-change-functions' instead would suffice.  No.  That hook
(which already existed, and which was fine as it was) is for ABNORMAL
hooks.  This incompatible change means that you cannot use the same,
NORMAL hook for both'window-configuration-change-hook' and
'window-size-change-functions'.

So if you want the behavior you had before, i.e., you want a function to
be invoked for both kinds of changes, you are out of luck.  You need to
have two different functions, or you need to at least change the
function to accept a frame argument, even if it is not used.  Why?

Example:

(define-minor-mode pretty-control-l-mode
    "Toggle pretty display of Control-l (`^L') characters.
With ARG, turn pretty display of `^L' on if and only if ARG is positive."
  :init-value nil :global t :group 'Pretty-Control-L
  (if pretty-control-l-mode
      (add-hook 'window-configuration-change-hook 'refresh-pretty-control-l)
    (remove-hook 'window-configuration-change-hook 'refresh-pretty-control-l))
  (walk-windows
   (lambda (window)
     (let ((display-table  (or (window-display-table window)
                               (make-display-table))))
       (aset display-table ?\014 (and pretty-control-l-mode
                                      (pp^L-^L-display-table-entry window)))
       (set-window-display-table window display-table)))
   'no-minibuf
   'visible))

The hook function no longer kicks in for "frame resizing", which also
means that it no longer kicks in when a frame is created.  So now the
code needs to add the hook function to both hooks (a normal hook and an
abnormal hook).  And the hook function, `refresh-pretty-control-l', now
needs to be changed to accept a phantom FRAME arg:

(defun refresh-pretty-control-l (&optional _)
  "Reinitialize `pretty-control-l-mode', if on, to update the display."
  (interactive)
  (when pretty-control-l-mode (pretty-control-l-mode t)))

Why this incompatible change?

In GNU Emacs 26.0.90 (build 3, x86_64-w64-mingw32)
 of 2017-10-13
Repository revision: 906224eba147bdfc0514090064e8e8f53160f1d4
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --without-dbus --host=x86_64-w64-mingw32
 --without-compress-install 'CFLAGS=-O2 -static -g3''





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#29050: 26.0; Change in when `window-configuration-change-hook' is run
  2017-10-29  1:25 bug#29050: 26.0; Change in when `window-configuration-change-hook' is run Drew Adams
@ 2017-10-29 11:19 ` martin rudalics
  2017-10-30  0:10   ` Drew Adams
  0 siblings, 1 reply; 4+ messages in thread
From: martin rudalics @ 2017-10-29 11:19 UTC (permalink / raw)
  To: Drew Adams, 29050

 >   *** Resizing a frame no longer runs 'window-configuration-change-hook'.
 >   'window-size-change-functions' should be used instead.
 >
 > Previously you could have a hook on 'window-configuration-change-hook'
 > that would take effect for frame resizings.  Now you cannot.
 >
 > Perhaps someone thought that just telling users to use
 > 'window-size-change-functions' instead would suffice.  No.  That hook
 > (which already existed, and which was fine as it was) is for ABNORMAL
 > hooks.  This incompatible change means that you cannot use the same,
 > NORMAL hook for both'window-configuration-change-hook' and
 > 'window-size-change-functions'.
 >
 > So if you want the behavior you had before, i.e., you want a function to
 > be invoked for both kinds of changes, you are out of luck.  You need to
 > have two different functions, or you need to at least change the
 > function to accept a frame argument, even if it is not used.  Why?

In earlier Emacsen, changing the frame size was allowed to delete all
windows but the selected one.  Nowadays, changing the frame size does
not delete windows any more and so does no more change the window
configuration proper but only the sizes of individual windows.

'window-configuration-change-hook' is a quite expensive hook which is
run for way too many functions in the windows area.  It's expensive
because it's run for every single invocation of these functions and
often even if nothing had changed at all.  I plan to run it exclusively
for the following cases - window deletion and creation and displaying a
different buffer in a window - which are all real changes.  Any window
resizing is covered by ‘window-size-change-functions’ which is now run
(almost) only when the size of a window really changed.

martin






^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#29050: 26.0; Change in when `window-configuration-change-hook' is run
  2017-10-29 11:19 ` martin rudalics
@ 2017-10-30  0:10   ` Drew Adams
  2017-10-30  8:24     ` martin rudalics
  0 siblings, 1 reply; 4+ messages in thread
From: Drew Adams @ 2017-10-30  0:10 UTC (permalink / raw)
  To: martin rudalics, 29050

> In earlier Emacsen, changing the frame size was allowed to delete all
> windows but the selected one.  Nowadays, changing the frame size does
> not delete windows any more and so does no more change the window
> configuration proper but only the sizes of individual windows.
> 
> 'window-configuration-change-hook' is a quite expensive hook which is
> run for way too many functions in the windows area.  It's expensive
> because it's run for every single invocation of these functions and
> often even if nothing had changed at all.  I plan to run it exclusively
> for the following cases - window deletion and creation and displaying a
> different buffer in a window - which are all real changes.  Any window
> resizing is covered by ‘window-size-change-functions’ which is now run
> (almost) only when the size of a window really changed.

OK.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#29050: 26.0; Change in when `window-configuration-change-hook' is run
  2017-10-30  0:10   ` Drew Adams
@ 2017-10-30  8:24     ` martin rudalics
  0 siblings, 0 replies; 4+ messages in thread
From: martin rudalics @ 2017-10-30  8:24 UTC (permalink / raw)
  To: Drew Adams, 29050-done

 >> 'window-configuration-change-hook' is a quite expensive hook which is
 >> run for way too many functions in the windows area.  It's expensive
 >> because it's run for every single invocation of these functions and
 >> often even if nothing had changed at all.  I plan to run it exclusively
 >> for the following cases - window deletion and creation and displaying a
 >> different buffer in a window - which are all real changes.  Any window
 >> resizing is covered by ‘window-size-change-functions’ which is now run
 >> (almost) only when the size of a window really changed.
 >
 > OK.

Closing this bug then.

Thanks, martin






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-10-30  8:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-29  1:25 bug#29050: 26.0; Change in when `window-configuration-change-hook' is run Drew Adams
2017-10-29 11:19 ` martin rudalics
2017-10-30  0:10   ` Drew Adams
2017-10-30  8:24     ` martin rudalics

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).