emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106689: * s/gnu-linux.h: Fix mark_me


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106689: * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
Date: Fri, 16 Dec 2011 17:05:26 -0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106689
fixes bug(s): http://debbugs.gnu.org/10286
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2011-12-16 17:05:26 -0800
message:
  * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
  
  (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
  which caused a build failure on GNU/Linux IA-64.  This problem was
  introduced by my 2011-10-07 patch.
modified:
  src/ChangeLog
  src/s/gnu-linux.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-12-15 23:28:56 +0000
+++ b/src/ChangeLog     2011-12-17 01:05:26 +0000
@@ -1,3 +1,10 @@
+2011-12-17  Paul Eggert  <address@hidden>
+
+       * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
+       (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
+       which caused a build failure on GNU/Linux IA-64.  This problem was
+       introduced by my 2011-10-07 patch.
+
 2011-12-15  Juri Linkov  <address@hidden>
 
        * image.c (imagemagick_error): New function.  (Bug#10112)

=== modified file 'src/s/gnu-linux.h'
--- a/src/s/gnu-linux.h 2011-09-09 01:06:52 +0000
+++ b/src/s/gnu-linux.h 2011-12-17 01:05:26 +0000
@@ -155,7 +155,7 @@
     extern void *__libc_ia64_register_backing_store_base;      \
     __builtin_ia64_flushrs ();                                 \
     mark_memory (__libc_ia64_register_backing_store_base,      \
-                __builtin_ia64_bsp (), 0);                     \
+                __builtin_ia64_bsp ());                        \
   } while (0)
 #endif
 #endif


reply via email to

[Prev in Thread] Current Thread [Next in Thread]