aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-10 21:50:22 +0000
committerRichard M. Stallman2002-12-10 21:50:22 +0000
commit9cd1fbc3a9f8e605fe333f0dda5dcdbf0a7e5300 (patch)
tree159863aff21687f97e7e095697cfb2b74ea2b9e6 /lisp
parentd79abb69849ed760232027c7db07c2501b83fbfb (diff)
downloademacs-9cd1fbc3a9f8e605fe333f0dda5dcdbf0a7e5300.tar.gz
emacs-9cd1fbc3a9f8e605fe333f0dda5dcdbf0a7e5300.zip
(bashdb): Prompt now included parenthesis for subshell
levels. Fix erroneous print expression command, and fix typos. (perldb): Undo previous change in prompt regexp.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gud.el8
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5fc4b8d85ca..690ded3bfad 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-12-10 R. Bernstein <rocky@panix.com>
2
3 * gud.el (bashdb): Prompt now included parenthesis for subshell
4 levels. Fix erroneous print expression command, and fix typos.
5 (perldb): Undo previous change in prompt regexp.
6
12002-12-10 Steven Tamm <steventamm@mac.com> 72002-12-10 Steven Tamm <steventamm@mac.com>
2 8
3 * generic-x.el (javascript-generic-mode): Added C style block 9 * generic-x.el (javascript-generic-mode): Added C style block
diff --git a/lisp/gud.el b/lisp/gud.el
index c24ccb02741..e3c2c9f41bf 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1249,7 +1249,7 @@ and source-file directory for your debugger."
1249; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") 1249; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
1250 (gud-def gud-print "%e" "\C-p" "Evaluate perl expression at point.") 1250 (gud-def gud-print "%e" "\C-p" "Evaluate perl expression at point.")
1251 1251
1252 (setq comint-prompt-regexp "^ DB<+(*[0-9])*+>+ ") 1252 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ")
1253 (setq paragraph-start comint-prompt-regexp) 1253 (setq paragraph-start comint-prompt-regexp)
1254 (run-hooks 'perldb-mode-hook)) 1254 (run-hooks 'perldb-mode-hook))
1255 1255
@@ -2123,12 +2123,12 @@ and source-file directory for your debugger."
2123 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.") 2123 (gud-def gud-finish "finish" "\C-f" "Finish executing current function.")
2124 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") 2124 (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
2125 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") 2125 (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
2126 (gud-def gud-print "pe %e" "\C-p" "Evaluate bash expression at point.") 2126 (gud-def gud-print "x %e" "\C-p" "Evaluate BASH expression at point.")
2127 2127
2128 ;; Is this right? 2128 ;; Is this right?
2129 (gud-def gud-statement "eval %e" "\C-e" "Execute Python statement at point.") 2129 (gud-def gud-statement "eval %e" "\C-e" "Execute BASH statement at point.")
2130 2130
2131 (setq comint-prompt-regexp "^bashdb<+[0-9]*>+ ") 2131 (setq comint-prompt-regexp "^bashdb<+(*[0-9]+)*>+ ")
2132 (setq paragraph-start comint-prompt-regexp) 2132 (setq paragraph-start comint-prompt-regexp)
2133 (run-hooks 'bashdb-mode-hook) 2133 (run-hooks 'bashdb-mode-hook)
2134 ) 2134 )