branch: externals/realgud
commit 6a3c23764353a5f94a35f212a482b12346ea03d4
Author: rocky <[email protected]>
Commit: rocky <[email protected]>
"*" is now address specifier in trepan3k
---
realgud/debugger/trepan3k/init.el | 2 +-
realgud/lang/python.el | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/realgud/debugger/trepan3k/init.el
b/realgud/debugger/trepan3k/init.el
index 46318f88ef..0b3e7dd5cf 100644
--- a/realgud/debugger/trepan3k/init.el
+++ b/realgud/debugger/trepan3k/init.el
@@ -40,7 +40,7 @@ realgud-loc-pat struct")
;; before a command prompt.
;;
;; For example:
-;; (/usr/bin/zonetab2pot.py:15 @3): <module>
+;; (/usr/bin/zonetab2pot.py:15 *3): <module>
;; (/usr/bin/zonetab2pot.py:15 remapped <string>): <module>
;; (/usr/bin/zonetab2pot.py:15:1 remapped <string>): <module>
;; or MS Windows:
diff --git a/realgud/lang/python.el b/realgud/lang/python.el
index 61b32c722b..b094e5bccc 100644
--- a/realgud/lang/python.el
+++ b/realgud/lang/python.el
@@ -59,7 +59,7 @@ traceback) line." )
;; before a command prompt.
;;
;; For example:
-;; (/usr/bin/zonetab2pot.py:15 @10): <module>
+;; (/usr/bin/zonetab2pot.py:15 *10): <module>
;; (/usr/bin/zonetab2pot.py:15:3 @10): <module>
;; (/usr/bin/zonetab2pot.py:15 remapped <string>): <module>
;; (/usr/bin/zonetab2pot.py:15:3 remapped <string>): <module>
@@ -71,7 +71,7 @@ traceback) line." )
;; The elisp code handles column-group nil correctly.
(defconst realgud:python-trepan-loc-pat
(make-realgud-loc-pat
- :regexp "^(\\(\\(?:[a-zA-Z]:\\)?[-a-zA-Z0-9_/.\\\\
]+\\):\\([0-9]+\\)\\(?:[:]\\([0-9]+\\)?\\|\\)\\(?: @[0-9]+\\)?\\(?: remapped
.*?\\)?): \\(?:<module>\\)?\\(?:\n.. [0-9]+ \\(.*?\\)\n\\)?"
+ :regexp "^(\\(\\(?:[a-zA-Z]:\\)?[-a-zA-Z0-9_/.\\\\
]+\\):\\([0-9]+\\)\\(?:[:]\\([0-9]+\\)?\\|\\)\\(?: [@*][0-9]+\\)?\\(?: remapped
.*?\\)?): \\(?:<module>\\)?\\(?:\n.. [0-9]+ \\(.*?\\)\n\\)?"
:file-group 1
:line-group 2
:column-group 3