all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] mark_backtrace fix
@ 2012-11-14 20:56 Sergey Vinokurov
  2012-11-15  0:43 ` Paul Eggert
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Vinokurov @ 2012-11-14 20:56 UTC (permalink / raw)
  To: emacs-devel

Hello,
I've tried to build emacs with tcc only to discover that commit
f458251a0ad98bf42e11ca5dea53297fab8d45f9
seems to miss mark_backtrace function fix. I'll be glad to learn that
I'm wrong but in any case I attach a
patch that removes build error. Interestingly enough, I cannot get the
same error from the gcc.


diff --git a/src/eval.c b/src/eval.c
index 9ea2543..72fcd3a 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -3388,7 +3388,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?  */



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mark_backtrace fix
  2012-11-14 20:56 [PATCH] mark_backtrace fix Sergey Vinokurov
@ 2012-11-15  0:43 ` Paul Eggert
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggert @ 2012-11-15  0:43 UTC (permalink / raw)
  To: Sergey Vinokurov; +Cc: emacs-devel

On 11/14/2012 12:56 PM, Sergey Vinokurov wrote:

> commit f458251a0ad98bf42e11ca5dea53297fab8d45f9
> seems to miss mark_backtrace function fix.

Thanks for reporting that.  I installed the fix as
trunk bzr 110898.  In the future would you please report
problems like that to bug-gnu-emacs@gnu.org?  Anyway,
thanks.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-11-15  0:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14 20:56 [PATCH] mark_backtrace fix Sergey Vinokurov
2012-11-15  0:43 ` Paul Eggert

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.