From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tino Calancha Newsgroups: gmane.emacs.devel Subject: Re: Add autoload cookies in seq.el Date: Mon, 23 May 2016 10:49:50 +0900 (JST) Message-ID: References: <87twhpna12.fsf@petton.fr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Trace: ger.gmane.org 1463968013 11221 80.91.229.3 (23 May 2016 01:46:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 May 2016 01:46:53 +0000 (UTC) Cc: emacs-devel@gnu.org To: Nicolas Petton Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 23 03:46:49 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b4exE-0006Ce-HY for ged-emacs-devel@m.gmane.org; Mon, 23 May 2016 03:46:48 +0200 Original-Received: from localhost ([::1]:45139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4exD-0004J2-B2 for ged-emacs-devel@m.gmane.org; Sun, 22 May 2016 21:46:47 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4ex6-0004Ik-2Z for emacs-devel@gnu.org; Sun, 22 May 2016 21:46:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4ex1-0005Pg-Uk for emacs-devel@gnu.org; Sun, 22 May 2016 21:46:39 -0400 Original-Received: from calancha-ilc.kek.jp ([130.87.234.234]:34314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4ex1-0005PX-B3 for emacs-devel@gnu.org; Sun, 22 May 2016 21:46:35 -0400 Original-Received: by calancha-ilc.kek.jp (Postfix, from userid 500) id 222726434; Mon, 23 May 2016 10:49:51 +0900 (JST) Original-Received: from localhost (localhost [127.0.0.1]) by calancha-ilc.kek.jp (Postfix) with ESMTP id 06394564A; Mon, 23 May 2016 10:49:51 +0900 (JST) X-X-Sender: calancha@calancha-ilc.kek.jp In-Reply-To: <87twhpna12.fsf@petton.fr> User-Agent: Alpine 2.20 (LRH 67 2015-01-07) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 130.87.234.234 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:203949 Archived-At: > Thanks, I fixed the missing dependencies to seq.el Hi nico, after last change in * lisp/image.el building Emacs fails as follows: Loading emacs-lisp/byte-run... Loading emacs-lisp/backquote... Loading subr... Loading version... Loading widget... Loading custom... Loading emacs-lisp/map-ynp... Loading international/mule... Loading international/mule-conf... Loading env... Loading format... Loading bindings... Loading window... Loading files... Loading emacs-lisp/macroexp... Loading cus-face... Loading faces... Loading button... Loading loaddefs.el (source)... Loading emacs-lisp/nadvice... Loading emacs-lisp/cl-preloaded... Loading minibuffer... Loading obarray... Loading abbrev... Loading simple... Loading help... Loading jka-cmpr-hook... Loading epa-hook... Loading international/mule-cmds... Loading case-table... Loading international/charprop.el (source)... Loading international/characters... Loading international/charscript... Loading composite... Loading language/chinese... Loading language/cyrillic... Loading language/indian... Loading language/sinhala... Loading language/english... Loading language/ethiopic... Loading language/european... Loading language/czech... Loading language/slovak... Loading language/romanian... Loading language/greek... Loading language/hebrew... Loading international/cp51932... Loading international/eucjp-ms... Loading language/japanese... Loading language/korean... Loading language/lao... Loading language/tai-viet... Loading language/thai... Loading language/tibetan... Loading language/vietnamese... Loading language/misc-lang... Loading language/utf-8-lang... Loading language/georgian... Loading language/khmer... Loading language/burmese... Loading language/cham... Loading indent... Loading emacs-lisp/cl-generic... Loading frame... Loading startup... Loading term/tty-colors... Loading font-core... Loading facemenu... Loading emacs-lisp/syntax... Loading font-lock... Loading jit-lock... Loading mouse... Loading scroll-bar... Loading select... Loading emacs-lisp/timer... Loading isearch... Loading rfn-eshadow... Loading menu-bar... Loading emacs-lisp/lisp... Loading textmodes/page... Loading register... Loading textmodes/paragraphs... Loading progmodes/prog-mode... Loading emacs-lisp/lisp-mode... Loading progmodes/elisp-mode... Loading textmodes/text-mode... Loading textmodes/fill... Loading newcomment... Loading replace... Loading emacs-lisp/tabulated-list... Loading buff-menu... Loading fringe... Loading emacs-lisp/regexp-opt... Loading image... (require seq) while preparing to dump Makefile:545: recipe for target 'emacs' failed make[2]: *** [emacs] Error 255 In GNU Emacs 25.1.50.2 (x86_64-pc-linux-gnu, GTK+ Version 2.24.30) Repository revision: 2dc0ef29425b7ee4c6c13b832c2a11dfe26ebb35 With following patch i can build Emacs successfully: diff --git a/lisp/image.el b/lisp/image.el index a6464f7..e5550c5 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -25,7 +25,6 @@ ;;; Code: -(require 'seq) (defgroup image () "Image support." @@ -975,6 +974,7 @@ image-decrease-size 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.