emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 392a755 083/215: Use quit! in python trepan debuggers


From: Rocky Bernstein
Subject: [elpa] master 392a755 083/215: Use quit! in python trepan debuggers
Date: Sat, 30 Jul 2016 14:48:55 +0000 (UTC)

branch: master
commit 392a75537554c49d8ea0c7d90f36dac0b8ff8f2b
Author: rocky <address@hidden>
Commit: rocky <address@hidden>

    Use quit! in python trepan debuggers
---
 realgud/debugger/trepan2/init.el  |    8 +++++++-
 realgud/debugger/trepan3k/init.el |    4 ++++
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/realgud/debugger/trepan2/init.el b/realgud/debugger/trepan2/init.el
index 1972035..0d0ff29 100644
--- a/realgud/debugger/trepan2/init.el
+++ b/realgud/debugger/trepan2/init.el
@@ -61,9 +61,15 @@ 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")
+      "^trepan2: That's all, folks...\n")
+
+
 
 (setf (gethash "font-lock-keywords" realgud:trepan2-pat-hash)
       realgud:python-debugger-font-lock-keywords)
diff --git a/realgud/debugger/trepan3k/init.el 
b/realgud/debugger/trepan3k/init.el
index 6a6b632..ffebc07 100644
--- a/realgud/debugger/trepan3k/init.el
+++ b/realgud/debugger/trepan3k/init.el
@@ -59,6 +59,10 @@ 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]