branch: master
commit a216bf09123b48d06f8633c2b99db54818c72257
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
Last commit set wrong variables
---
realgud/debugger/trepan2/init.el | 11 +++++------
realgud/debugger/trepan3k/init.el | 9 +++++----
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/realgud/debugger/trepan2/init.el b/realgud/debugger/trepan2/init.el
index 0d0ff29..24f239d 100644
--- a/realgud/debugger/trepan2/init.el
+++ b/realgud/debugger/trepan2/init.el
@@ -61,16 +61,10 @@ realgud-loc-pat struct")
(setf (gethash "brkpt-del" realgud:trepan2-pat-hash)
realgud:python-trepan-brkpt-del-pat)
-;; If your version of trepan2 doesn't support "quit!",
-;; get a more recent version of trepan2
-(setf (gethash "quit" realgud:trepan2-pat-hash) "quit!")
-
;; Regular expression for a termination message.
(setf (gethash "termination" realgud:trepan2-pat-hash)
"^trepan2: That's all, folks...\n")
-
-
(setf (gethash "font-lock-keywords" realgud:trepan2-pat-hash)
realgud:python-debugger-font-lock-keywords)
@@ -82,6 +76,11 @@ realgud-loc-pat struct")
(setf (gethash "shell" realgud:trepan2-command-hash) "python")
(setf (gethash "until" realgud:trepan2-command-hash) "continue %l")
+
+;; If your version of trepan2 doesn't support "quit!",
+;; get a more recent version of trepan2
+(setf (gethash "quit" realgud:trepan2-command-hash) "quit!")
+
(setf (gethash "trepan2" realgud-command-hash) realgud:trepan2-command-hash)
(provide-me "realgud:trepan2-")
diff --git a/realgud/debugger/trepan3k/init.el
b/realgud/debugger/trepan3k/init.el
index ffebc07..d555ed9 100644
--- a/realgud/debugger/trepan3k/init.el
+++ b/realgud/debugger/trepan3k/init.el
@@ -59,10 +59,6 @@ realgud-loc-pat struct")
(setf (gethash "brkpt-del" realgud:trepan3k-pat-hash)
realgud:python-trepan-brkpt-del-pat)
-;; If your version of trepan3k doesn't support "quit!",
-;; get a more recent version of trepan2
-(setf (gethash "quit" realgud:trepan3k-pat-hash) "quit!")
-
;; Regular expression for a termination message.
(setf (gethash "termination" realgud:trepan3k-pat-hash)
"^trepan3k: That's all, folks...\n")
@@ -78,6 +74,11 @@ realgud-loc-pat struct")
(setf (gethash "shell" realgud:trepan3k-command-hash) "python")
(setf (gethash "until" realgud-command-hash) "continue %l")
+
+;; If your version of trepan3k doesn't support "quit!",
+;; get a more recent version of trepan2
+(setf (gethash "quit" realgud:trepan3k-command-hash) "quit!")
+
(setf (gethash "trepan3k" realgud-command-hash) realgud:trepan3k-command-hash)
(provide-me "realgud:trepan3k-")