* eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.

This follows up on the 2012-09-29 patch that removed indirection
for the 'function' field.  Reported by Sergey Vinokurov in
<http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
This commit is contained in:
Paul Eggert 2012-11-14 16:41:32 -08:00
parent 1668ea9062
commit bf20ea80f6
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
* eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
This follows up on the 2012-09-29 patch that removed indirection
for the 'function' field. Reported by Sergey Vinokurov in
<http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
2012-11-14 Eli Zaretskii <eliz@gnu.org>
* w32.c (faccessat): Rename from sys_faccessat. (No need to use a

View file

@ -3369,7 +3369,7 @@ mark_backtrace (void)
for (backlist = backtrace_list; backlist; backlist = backlist->next)
{
mark_object (*backlist->function);
mark_object (backlist->function);
if (backlist->nargs == UNEVALLED
|| backlist->nargs == MANY) /* FIXME: Can this happen? */