Drew Adams wrote: > I'm looking for a more generic user option that toggles display of all > images in an Emacs session,
How about: (setq image-types nil)
Or:
(defadvice display-images-p (around disable activate) "Return nil." nil)
> or at least in a given Emacs buffer.
(set (make-local-variable 'image-types) nil)
-- Kevin Rodgers
_______________________________________________ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnu-emacs