diff options
| author | Chong Yidong | 2010-02-26 19:19:50 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-02-26 19:19:50 -0500 |
| commit | b8280f393023247c6cb21e7546fc9edd891fb711 (patch) | |
| tree | 54e4754c03386b2298577eb50143b0174e6baf8b /lisp/progmodes/python.el | |
| parent | dcfb7b5c8529e9cf790d121e41127017dd0476dd (diff) | |
| download | emacs-b8280f393023247c6cb21e7546fc9edd891fb711.tar.gz emacs-b8280f393023247c6cb21e7546fc9edd891fb711.zip | |
Minor Python mode fix (Bug#5653).
* progmodes/python.el (python-pdbtrack-stack-entry-regexp): Allow
the characters _<> in the stack entry (Bug#5653).
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index a6354eff998..4e0f326e2d4 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -576,7 +576,7 @@ Currently-active file is at the head of the list.") | |||
| 576 | (defvar python-pdbtrack-is-tracking-p nil) | 576 | (defvar python-pdbtrack-is-tracking-p nil) |
| 577 | 577 | ||
| 578 | (defconst python-pdbtrack-stack-entry-regexp | 578 | (defconst python-pdbtrack-stack-entry-regexp |
| 579 | "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()" | 579 | "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()" |
| 580 | "Regular expression pdbtrack uses to find a stack trace entry.") | 580 | "Regular expression pdbtrack uses to find a stack trace entry.") |
| 581 | 581 | ||
| 582 | (defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ " | 582 | (defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ " |