]> git.eshelyaron.com Git - emacs.git/commitdiff
Use autoload to avoid overriding disabled setting applied in .emacs.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 3 Feb 2007 01:01:01 +0000 (01:01 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 3 Feb 2007 01:01:01 +0000 (01:01 +0000)
lisp/image-mode.el

index 13a689b606144c8bcb24b8c98f5e1d7e7f242651..fdc331a08bee2cf66c547a1db6c12484b75cec4f 100644 (file)
@@ -174,10 +174,15 @@ and showing the image as an image."
       (if (called-interactively-p)
          (message "Repeat this command to go back to displaying the file as text")))))
 
-(put 'image-toggle-display 'disabled "\
-WARNING: Displaying images can be a security risk.
-Please make sure you're using up-to-date image libraries
-and the images displayed come from a trusted source.")
+;; Don't override the setting from .emacs.
+;;;###autoload (put 'image-toggle-display 'disabled t)
+
+(if (get 'image-toggle-display 'disabled)
+    (put 'image-toggle-display 'disabled "\
+
+Warning: Displaying images in Emacs could be a security risk.
+Please ensure that you are using up-to-date image libraries
+and that the images being displayed come from a trusted source."))
 
 (provide 'image-mode)