GNU bug report logs -
#32672
27.0.50; image resize on window resizing
Previous Next
Reported by: Juri Linkov <juri <at> linkov.net>
Date: Sun, 9 Sep 2018 16:11:02 UTC
Severity: wishlist
Tags: fixed
Fixed in version 27.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> Trying to put to image-mode:
>
> (add-hook 'buffer-list-update-hook
> (lambda () (message "buffer-list-update-hook %S"
> (current-buffer))) nil t)
>
> shows in *Messages* that it's called only when navigating away from the
> image-mode buffer, but not when coming back to the image-mode buffer, e.g.
> `C-x <left>', then resize the window, then type `C-x <right>',
> it's not called. Also it's not called in another direction:
> `C-x <right>', then resize the window, then type `C-x <left>'.
I forgot that you wanted to make this buffer-local as well. We
curently have no special semantics attached to the buffer-local
version of this so yes: When the buffer is not current, its local hook
is not run. To fix this, for example in 'bury-buffer-internal' we
would have to add an extra
/* Run buffer-list-update-hook. */
if (!NILP (Vrun_hooks))
call1 (Vrun_hooks, Qbuffer_list_update_hook);
with BUFFER current. We probably could do that but I'm not very fond
of it. The buffer list is decidedly more global than a window. And
it's only the tip of an iceberg - how many more hooks would we have to
adapt in a similar fashion?
martin
This bug report was last modified 5 years and 170 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.