mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 13:57:36 +00:00
* 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:
parent
03988c98df
commit
1ff980ae49
3 changed files with 9 additions and 4 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
|
|
@ -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.")
|
||||
|
|
|
|||
Loading…
Reference in a new issue