From: Nick Roberts Date: Wed, 26 Apr 2006 23:02:33 +0000 (+0000) Subject: (pp1, pv1): Only print value as expression is now printed out by gud-print. X-Git-Tag: emacs-pretest-22.0.90~2930 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5cd35d2cf0ff1d78ba48e7c1a67efa8f1afdbefe;p=emacs.git (pp1, pv1): Only print value as expression is now printed out by gud-print. (pv1): Correct doc string. --- diff --git a/src/.gdbinit b/src/.gdbinit index 12a9d014026..5b2b358a22f 100644 --- a/src/.gdbinit +++ b/src/.gdbinit @@ -88,15 +88,13 @@ end # Print out s-expressions from tool bar define pp1 set $tmp = $arg0 - echo $arg0 - printf " = " set $output_debug = print_output_debug_flag set print_output_debug_flag = 0 set safe_debug_print ($tmp) set print_output_debug_flag = $output_debug end document pp1 -Print the argument as an emacs s-expression +Print the argument as an emacs s-expression. Works only when an inferior emacs is executing. For use on tool bar when debugging in Emacs where the variable name would not otherwise @@ -119,8 +117,6 @@ end # Print value of lisp variable define pv1 set $tmp = "$arg0" - echo $arg0 - printf " = " set $output_debug = print_output_debug_flag set print_output_debug_flag = 0 set safe_debug_print (find_symbol_value (intern ($tmp))) @@ -129,9 +125,8 @@ end document pv1 Print the value of the lisp variable given as argument. Works only when an inferior emacs is executing. -For use on tool bar when debugging in Emacs -where the variable name would not otherwise -be recorded in the GUD buffer. +For use when debugging in Emacs where the variable +name would not otherwise be recorded in the GUD buffer. end # Print out current buffer point and boundaries