help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: how to not show images?


From: Kevin Rodgers
Subject: Re: how to not show images?
Date: Thu, 19 May 2005 11:41:33 -0600
User-agent: Mozilla Thunderbird 0.9 (X11/20041105)

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





reply via email to

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