* progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
+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.
(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]
"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.")