summaryrefslogtreecommitdiff
path: root/lisp/gud.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1999-02-12 10:38:47 +0000
committerAndreas Schwab <schwab@suse.de>1999-02-12 10:38:47 +0000
commit25330efdb5e4766ac3f93e40ae48e6bd33d8cb92 (patch)
tree2893ad6052ba984153774f62383ac354f13569a6 /lisp/gud.el
parent1f70b06ddc08d6a211b5a208007daa63268eda63 (diff)
downloademacs-25330efdb5e4766ac3f93e40ae48e6bd33d8cb92.tar.gz
emacs-25330efdb5e4766ac3f93e40ae48e6bd33d8cb92.tar.bz2
emacs-25330efdb5e4766ac3f93e40ae48e6bd33d8cb92.zip
(jdb): Fix regexp for comint-prompt-regexp.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 501d19ebea2..c03129d4ad6 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1887,7 +1887,7 @@ between it and it's value."
(gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
(gud-def gud-cont "cont" "\C-r" "Continue with display.")
- (setq comint-prompt-regexp "^> \|^.+\[[0-9]+\] ")
+ (setq comint-prompt-regexp "^> \\|^.+\\[[0-9]+\\] ")
(setq paragraph-start comint-prompt-regexp)
(run-hooks 'jdb-mode-hook)