emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r110290: * src/.gdbinit (xbacktrace):


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110290: * src/.gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
Date: Sun, 30 Sep 2012 16:06:20 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110290
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Sun 2012-09-30 16:06:20 -0400
message:
  * src/.gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
modified:
  src/.gdbinit
  src/ChangeLog
=== modified file 'src/.gdbinit'
--- a/src/.gdbinit      2012-09-23 17:34:30 +0000
+++ b/src/.gdbinit      2012-09-30 20:06:20 +0000
@@ -1121,15 +1121,15 @@
 define xbacktrace
   set $bt = backtrace_list
   while $bt
-    xgettype (*$bt->function)
+    xgettype ($bt->function)
     if $type == Lisp_Symbol
-      xprintsym (*$bt->function)
+      xprintsym ($bt->function)
       printf " (0x%x)\n", $bt->args
     else
-      xgetptr *$bt->function
+      xgetptr $bt->function
       printf "0x%x ", $ptr
       if $type == Lisp_Vectorlike
-       xgetptr (*$bt->function)
+       xgetptr ($bt->function)
         set $size = ((struct Lisp_Vector *) $ptr)->header.size
         if ($size & PSEUDOVECTOR_FLAG)
          output (enum pvec_type) (($size & PVEC_TYPE_MASK) >> 
PSEUDOVECTOR_SIZE_BITS)

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-09-30 15:49:05 +0000
+++ b/src/ChangeLog     2012-09-30 20:06:20 +0000
@@ -1,10 +1,14 @@
+2012-09-30  Stefan Monnier  <address@hidden>
+
+       * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
+
 2012-09-30  Eli Zaretskii  <address@hidden>
 
        Support atimers and CPU profiler via profile.c on MS-Windows.
        * w32proc.c (sig_mask, crit_sig): New static variables.
        (sys_signal): Support SIGALRM and SIGPROF.
        (sigemptyset, sigaddset, sigfillset, sigprocmask)
-       (pthread_sigmask, setpgrp): Moved here from w32.c.  sigaddset,
+       (pthread_sigmask, setpgrp): Move here from w32.c.  sigaddset,
        sigfillset, and sigprocmask are no longer no-ops.
        (sigismember): New function.
        (struct itimer_data): New definition.
@@ -26,8 +30,8 @@
        to hourglass timer expiration.
        (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
        Remove, no longer used.
-       (w32_note_current_window, show_hourglass, hide_hourglass): New
-       functions, in support of hourglass cursor display similar to other
+       (w32_note_current_window, show_hourglass, hide_hourglass):
+       New functions, in support of hourglass cursor display similar to other
        window systems.
        (syms_of_w32fns): Don't initialize hourglass_timer.
 


reply via email to

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