]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix gud-statement for pdb
authorXu Chunyang <mail@xuchunyang.me>
Sun, 6 May 2018 19:46:04 +0000 (22:46 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 6 May 2018 19:46:04 +0000 (22:46 +0300)
* lisp/progmodes/gud.el (pdb): Fix the gud-print implementation.
(Bug#31363)

lisp/progmodes/gud.el

index 15b428bb68b99a9aeaaba771bbe0b81607bb4781..9cf818e99ea99bddbd3ec545cb3cc8fc50ec21c8 100644 (file)
@@ -1694,8 +1694,7 @@ and source-file directory for your debugger."
   (gud-def gud-up     "up"           "<" "Up one stack frame.")
   (gud-def gud-down   "down"         ">" "Down one stack frame.")
   (gud-def gud-print  "p %e"         "\C-p" "Evaluate Python expression at point.")
-  ;; Is this right?
-  (gud-def gud-statement "! %e"      "\C-e" "Execute Python statement at point.")
+  (gud-def gud-statement "!%e"      "\C-e" "Execute Python statement at point.")
 
   ;; (setq comint-prompt-regexp "^(.*pdb[+]?) *")
   (setq comint-prompt-regexp "^(Pdb) *")