]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove XEmacs compat code from ezimage.el
authorStefan Kangas <stefankangas@gmail.com>
Fri, 18 Oct 2019 23:12:33 +0000 (01:12 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 18 Oct 2019 23:13:42 +0000 (01:13 +0200)
* lisp/ezimage.el (top-level): Remove XEmacs compat code.

lisp/ezimage.el

index f2b62b27fa92b0340cabb69c5006a713cc54f9cd..fc498aac3253fc9a0f0ed007bc733dab00f3ad3d 100644 (file)
 ;; The idea is that gui buffers (trees, buttons, etc) will have text
 ;; representations of the GUI elements.  These routines will replace the text
 ;; with an image when images are available.
-;;
-;; This file requires the `image' package if it is available.
-
-(condition-case nil                    ; for older XEmacs
-    (require 'image)
-  (error nil))
 
 ;;; Code:
+
+(require 'image)
+
 (defcustom ezimage-use-images (and (display-images-p)
                                    (image-type-available-p 'xpm))
   "Non-nil means ezimage should display icons."