mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-10 03:13:46 +00:00
Use '.' for the module seperator instead of ':' when matching
Estimated hours taken: 0.5 Branches: main scripts/gud.el: Use '.' for the module seperator instead of ':' when matching procedure specifications.
This commit is contained in:
@@ -1115,8 +1115,8 @@ containing the executable being debugged.")
|
||||
(event-regexp "[A-Z]+ ")
|
||||
|
||||
;; Regexp to match a procedure specification,
|
||||
;; i.e. "<module>:<sub-module>:<name>/<arity>-<mode> "
|
||||
(proc-regexp "\\(?:[^:]+:\\)+[^:/]+/[0-9]+-[0-9]+ ")
|
||||
;; i.e. "<module>.<sub-module>.<name>/<arity>-<mode> "
|
||||
(proc-regexp "\\(?:[^\\.]+\\.\\)+[^\\./]+/[0-9]+-[0-9]+ ")
|
||||
|
||||
;; Regexp to match "(<detism>) "
|
||||
(detism-regexp "([a-z]+) ")
|
||||
|
||||
Reference in New Issue
Block a user