all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tino Calancha <tino.calancha@gmail.com>
To: Nicolas Petton <nicolas@petton.fr>
Cc: emacs-devel@gnu.org
Subject: Re: Add autoload cookies in seq.el
Date: Mon, 23 May 2016 10:49:50 +0900 (JST)	[thread overview]
Message-ID: <alpine.LRH.2.20.1605231048250.4970@calancha-ilc.kek.jp> (raw)
In-Reply-To: <87twhpna12.fsf@petton.fr>


> 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.




  reply	other threads:[~2016-05-23  1:49 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-20  6:06 Add autoload cookies in seq.el Tino Calancha
2016-05-20  8:26 ` Nicolas Petton
2016-05-20  8:54   ` Tino Calancha
2016-05-20  9:42     ` Eli Zaretskii
2016-05-21  0:07       ` Tino Calancha
2016-05-21  6:50         ` Eli Zaretskii
2016-07-20 13:24           ` Lars Ingebrigtsen
2016-07-20 15:13             ` Eli Zaretskii
2016-07-21 10:51               ` Lars Ingebrigtsen
2016-07-21 13:27                 ` Ted Zlatanov
2016-07-21 14:38                   ` Eli Zaretskii
2016-07-21 14:33                 ` Eli Zaretskii
2016-07-21 15:01                   ` Lars Ingebrigtsen
2016-07-21 16:09                     ` Eli Zaretskii
2016-07-22  9:04                       ` Lars Ingebrigtsen
2016-07-22 10:50                         ` Ted Zlatanov
2016-07-21 14:36                 ` Michael Heerdegen
2016-07-21 15:45                   ` Stefan Monnier
2016-07-22 14:26                     ` Stefan Monnier
2016-07-22 15:07                       ` Nicolas Petton
2016-07-22 15:18                         ` Stefan Monnier
2016-07-22 15:28                         ` Eli Zaretskii
2016-07-22 17:48                           ` Nicolas Petton
2016-05-22 12:17   ` Tino Calancha
2016-05-22 19:54     ` Nicolas Petton
2016-05-23  1:49       ` Tino Calancha [this message]
2016-05-23  8:33         ` Nicolas Petton
2016-05-23 15:13         ` Paul Eggert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LRH.2.20.1605231048250.4970@calancha-ilc.kek.jp \
    --to=tino.calancha@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=nicolas@petton.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.