emacs-devel
[Top][All Lists]
Advanced

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

[PATCH] mark_backtrace fix


From: Sergey Vinokurov
Subject: [PATCH] mark_backtrace fix
Date: Wed, 14 Nov 2012 22:56:50 +0200

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?  */



reply via email to

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