emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109680: * .gdbinit: Use call instead


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109680: * .gdbinit: Use call instead of set when calling a function in the
Date: Sun, 19 Aug 2012 12:50:03 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109680
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sun 2012-08-19 12:50:03 +0200
message:
  * .gdbinit: Use call instead of set when calling a function in the
  inferior.
modified:
  src/.gdbinit
  src/ChangeLog
=== modified file 'src/.gdbinit'
--- a/src/.gdbinit      2012-08-07 16:53:38 +0000
+++ b/src/.gdbinit      2012-08-19 10:50:03 +0000
@@ -89,7 +89,7 @@
   set $tmp = $arg0
   set $output_debug = print_output_debug_flag
   set print_output_debug_flag = 0
-  set safe_debug_print ($tmp)
+  call safe_debug_print ($tmp)
   set print_output_debug_flag = $output_debug
 end
 document pp
@@ -102,7 +102,7 @@
   set $tmp = "$arg0"
   set $output_debug = print_output_debug_flag
   set print_output_debug_flag = 0
-  set safe_debug_print (find_symbol_value (intern ($tmp)))
+  call safe_debug_print (find_symbol_value (intern ($tmp)))
   set print_output_debug_flag = $output_debug
 end
 document pv
@@ -1162,7 +1162,7 @@
 define xwhichsymbols
   set $output_debug = print_output_debug_flag
   set print_output_debug_flag = 0
-  set safe_debug_print (which_symbols ($arg0, $arg1))
+  call safe_debug_print (which_symbols ($arg0, $arg1))
   set print_output_debug_flag = $output_debug
 end
 document xwhichsymbols

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-08-19 08:40:12 +0000
+++ b/src/ChangeLog     2012-08-19 10:50:03 +0000
@@ -1,5 +1,8 @@
 2012-08-19  Andreas Schwab  <address@hidden>
 
+       * .gdbinit: Use call instead of set when calling a function in the
+       inferior.
+
        * data.c (set_internal): Don't use set_blv_found.
        (Fkill_local_variable): Likewise.
 


reply via email to

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