Mercurial > emacs
changeset 24302:814e54320fab
(jdb): Fix regexp for comint-prompt-regexp.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 12 Feb 1999 10:38:47 +0000 |
parents | b09b949b5433 |
children | 958f4aa0dceb |
files | lisp/gud.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)