# HG changeset patch # User Andreas Schwab # Date 918815927 0 # Node ID 814e54320fab53402aad0e8702c0f7cd0d234dd9 # Parent b09b949b543323c3e6ffb41f8eff50c2b295dc1a (jdb): Fix regexp for comint-prompt-regexp. diff -r b09b949b5433 -r 814e54320fab lisp/gud.el --- a/lisp/gud.el Fri Feb 12 08:06:39 1999 +0000 +++ b/lisp/gud.el Fri Feb 12 10:38:47 1999 +0000 @@ -1887,7 +1887,7 @@ (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)