diff options
| -rw-r--r-- | lisp/image-mode.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 13a689b6061..fdc331a08be 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el | |||
| @@ -174,10 +174,15 @@ and showing the image as an image." | |||
| 174 | (if (called-interactively-p) | 174 | (if (called-interactively-p) |
| 175 | (message "Repeat this command to go back to displaying the file as text"))))) | 175 | (message "Repeat this command to go back to displaying the file as text"))))) |
| 176 | 176 | ||
| 177 | (put 'image-toggle-display 'disabled "\ | 177 | ;; Don't override the setting from .emacs. |
| 178 | WARNING: Displaying images can be a security risk. | 178 | ;;;###autoload (put 'image-toggle-display 'disabled t) |
| 179 | Please make sure you're using up-to-date image libraries | 179 | |
| 180 | and the images displayed come from a trusted source.") | 180 | (if (get 'image-toggle-display 'disabled) |
| 181 | (put 'image-toggle-display 'disabled "\ | ||
| 182 | |||
| 183 | Warning: Displaying images in Emacs could be a security risk. | ||
| 184 | Please ensure that you are using up-to-date image libraries | ||
| 185 | and that the images being displayed come from a trusted source.")) | ||
| 181 | 186 | ||
| 182 | (provide 'image-mode) | 187 | (provide 'image-mode) |
| 183 | 188 | ||