From: Paul Eggert <eggert@cs.ucla.edu>
To: 9926@debbugs.gnu.org
Subject: bug#9926: patch: emacs-24.0.91 FTBFS on GNU/Hurd
Date: Sun, 06 Nov 2011 21:43:31 -0800 [thread overview]
Message-ID: <4EB77003.9040006@cs.ucla.edu> (raw)
In-Reply-To: <1320101671.5171.11.camel@hp.my.own.domain>
I installed the following patch in the trunk as bzr 106311
to fix the fails-to-compile bug.
Making GC_MAKE_GCPROS_NOOPS the default sounds good, but as
it doesn't fix a bug and we're in feature-freeze now I left
that for later.
=== modified file 'src/ChangeLog'
--- src/ChangeLog 2011-11-07 02:00:43 +0000
+++ src/ChangeLog 2011-11-07 05:37:49 +0000
@@ -1,3 +1,10 @@
+2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
+
+ * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
+ This is also needed for porting to any host where GC_MARK_STACK is
+ not GC_MAKE_GCPROS_NOOPS.
+ (which_symbols): Use it.
+
2011-11-07 Kenichi Handa <handa@m17n.org>
* coding.c (coding_set_destination): Check coding->src_pos only
=== modified file 'src/alloc.c'
--- src/alloc.c 2011-10-29 17:25:44 +0000
+++ src/alloc.c 2011-11-07 05:37:49 +0000
@@ -315,6 +315,7 @@
on free lists recognizable in O(1). */
static Lisp_Object Vdead;
+#define DEADP(x) EQ (x, Vdead)
#ifdef GC_MALLOC_CHECK
@@ -411,6 +412,10 @@
#endif /* GC_MARK_STACK || GC_MALLOC_CHECK */
+#ifndef DEADP
+# define DEADP(x) 0
+#endif
+
/* Recording what needs to be marked for gc. */
struct gcpro *gcprolist;
@@ -6261,7 +6266,7 @@
int gc_count = inhibit_garbage_collection ();
Lisp_Object found = Qnil;
- if (!EQ (obj, Vdead))
+ if (! DEADP (obj))
{
for (sblk = symbol_block; sblk; sblk = sblk->next)
{
next prev parent reply other threads:[~2011-11-07 5:43 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-31 22:54 bug#9926: patch: emacs-24.0.91 FTBFS on GNU/Hurd Svante Signell
2011-11-01 17:42 ` Stefan Monnier
2011-11-07 5:43 ` Paul Eggert [this message]
2011-11-08 12:21 ` Svante Signell
2011-11-08 13:31 ` Stefan Monnier
2011-11-08 16:44 ` Paul Eggert
2011-11-08 17:09 ` Stefan Monnier
2011-11-08 20:18 ` Paul Eggert
2011-11-08 17:23 ` Eli Zaretskii
2011-11-08 20:36 ` 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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EB77003.9040006@cs.ucla.edu \
--to=eggert@cs.ucla.edu \
--cc=9926@debbugs.gnu.org \
/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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).