From: Paul Eggert Date: Mon, 23 May 2016 15:13:03 +0000 (-0700) Subject: Fix seq requirement that broke bootstrap X-Git-Tag: emacs-26.0.90~1913 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c6493c68f8fd6a5e6893eb3837a1a27f8d8a98a8;p=emacs.git Fix seq requirement that broke bootstrap * lisp/image.el (image--get-image): Require seq here, not at the top level, to avoid ‘(require seq) while preparing to dump’ while bootstrapping. Suggested by Tino Calancha in: http://lists.gnu.org/archive/html/emacs-devel/2016-05/msg00477.html --- diff --git a/lisp/image.el b/lisp/image.el index a6464f7d4af..e06cb6f4733 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -25,8 +25,6 @@ ;;; Code: -(require 'seq) - (defgroup image () "Image support." :group 'multimedia) @@ -975,6 +973,7 @@ default is 20%." 0.8))) (defun image--get-image () + (require 'seq) (let ((image (or (get-text-property (point) 'display) ;; `put-image' uses overlays, so find an image in ;; the overlays.