* progmodes/gud.el (gud-pv): Use pv instead of pv1.

* progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
This commit is contained in:
Andreas Schwab 2012-02-05 09:06:37 +01:00
parent 03988c98df
commit 1ff980ae49
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
* progmodes/gud.el (gud-pv): Use pv instead of pv1.
* progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
2012-02-05 Chong Yidong <cyd@gnu.org>
* custom.el (defcustom): Doc fix.

View file

@ -779,9 +779,9 @@ detailed description of this mode.
(gud-def gud-pp
(gud-call
(concat
"pp1 " (if (eq (buffer-local-value
'major-mode (window-buffer)) 'speedbar-mode)
(gdb-find-watch-expression) "%e")) arg)
"pp " (if (eq (buffer-local-value
'major-mode (window-buffer)) 'speedbar-mode)
(gdb-find-watch-expression) "%e")) arg)
nil "Print the Emacs s-expression.")
(define-key gud-minor-mode-map [left-margin mouse-1]

View file

@ -749,7 +749,7 @@ directory and source-file directory for your debugger."
"Evaluate C dereferenced pointer expression at point.")
;; For debugging Emacs only.
(gud-def gud-pv "pv1 %e" "\C-v" "Print the value of the lisp variable.")
(gud-def gud-pv "pv %e" "\C-v" "Print the value of the lisp variable.")
(gud-def gud-until "until %l" "\C-u" "Continue to current line.")
(gud-def gud-run "run" nil "Run the program.")