From: Andreas Schwab Date: Fri, 12 Feb 1999 10:38:47 +0000 (+0000) Subject: (jdb): Fix regexp for comint-prompt-regexp. X-Git-Tag: emacs-20.4~647 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25330efdb5e4766ac3f93e40ae48e6bd33d8cb92;p=emacs.git (jdb): Fix regexp for comint-prompt-regexp. --- 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)