From: Paul Eggert Date: Sat, 17 Dec 2011 01:05:26 +0000 (-0800) Subject: * s/gnu-linux.h: Fix mark_memory typo (Bug#10286). X-Git-Tag: emacs-pretest-24.0.93~156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2adb6e857867449beb24faf7b361e7c3c3904c88;p=emacs.git * 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. --- diff --git a/src/ChangeLog b/src/ChangeLog index f8fa66d0046..98e87ef4306 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2011-12-17 Paul Eggert + + * 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 * image.c (imagemagick_error): New function. (Bug#10112) diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 3d78bf695bc..d89b14cc080 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -155,7 +155,7 @@ along with GNU Emacs. If not, see . */ 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