Eli Zaretskii writes: > Actually, I see that image-mode installs an after-revert-hook, bit the > hook function, image-after-revert-hook, does nothing in this case > because image-get-display-property returns nil. It seems to return nil because `revert-buffer' is called with is called with `preserve-modes' set to non-nil, so `image-mode' is not called again, so `image-toggle-display-image' is never called on the updated buffer. I installed a fix in master, commit b176d16. Nico