From: Paul Eggert Date: Thu, 15 Nov 2012 00:41:32 +0000 (-0800) Subject: * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'. X-Git-Tag: emacs-24.3.90~173^2~18^2~105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf20ea80f6331aaea18042a92928deb9db1b66f3;p=emacs.git * 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 . --- diff --git a/src/ChangeLog b/src/ChangeLog index ec8f7e219f7..d309931e8e6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2012-11-15 Paul Eggert + + * 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 + . + 2012-11-14 Eli Zaretskii * w32.c (faccessat): Rename from sys_faccessat. (No need to use a diff --git a/src/eval.c b/src/eval.c index dcd48cb7250..c9f27ea8d77 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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? */