emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111171: Backport typo fix from tr


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111171: Backport typo fix from trunk, for AIX.
Date: Thu, 10 Jan 2013 23:51:25 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111171
fixes bug: http://debbugs.gnu.org/13408
committer: Paul Eggert <address@hidden>
branch nick: emacs-24
timestamp: Thu 2013-01-10 23:51:25 -0800
message:
  Backport typo fix from trunk, for AIX.
  
  * 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>.
modified:
  src/ChangeLog
  src/eval.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-01-11 07:47:57 +0000
+++ b/src/ChangeLog     2013-01-11 07:51:25 +0000
@@ -1,5 +1,11 @@
 2013-01-11  Paul Eggert  <address@hidden>
 
+       Backport typo fix from trunk, for AIX (Bug#13408).
+       * 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>.
+
        Fix SIGDANGER handlers, for AIX (Bug#13408).
        * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
        Move handlers here from emacs.c; they were out of place.

=== modified file 'src/eval.c'
--- a/src/eval.c        2013-01-01 09:11:05 +0000
+++ b/src/eval.c        2013-01-11 07:51:25 +0000
@@ -3377,7 +3377,7 @@
 
   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]