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:
Peter Ross
2003-03-10 09:08:20 +00:00
parent 9b30970d46
commit b0505406ae

View File

@@ -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]+) ")