[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r99565: Minor Python mode fix (Bug#56
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r99565: Minor Python mode fix (Bug#5653). |
Date: |
Fri, 26 Feb 2010 19:19:50 -0500 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99565
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2010-02-26 19:19:50 -0500
message:
Minor Python mode fix (Bug#5653).
* progmodes/python.el (python-pdbtrack-stack-entry-regexp): Allow
the characters _<> in the stack entry (Bug#5653).
modified:
lisp/ChangeLog
lisp/progmodes/python.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-02-26 12:43:50 +0000
+++ b/lisp/ChangeLog 2010-02-27 00:19:50 +0000
@@ -1,3 +1,8 @@
+2010-02-27 Jeremy Whitlock <address@hidden> (tiny change)
+
+ * progmodes/python.el (python-pdbtrack-stack-entry-regexp): Allow
+ the characters _<> in the stack entry (Bug#5653).
+
2010-02-26 Kenichi Handa <address@hidden>
* language/burmese.el: Fix entries in composition-function-table.
=== modified file 'lisp/progmodes/python.el'
--- a/lisp/progmodes/python.el 2010-01-19 19:39:22 +0000
+++ b/lisp/progmodes/python.el 2010-02-27 00:19:50 +0000
@@ -576,7 +576,7 @@
(defvar python-pdbtrack-is-tracking-p nil)
(defconst python-pdbtrack-stack-entry-regexp
- "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
+ "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
"Regular expression pdbtrack uses to find a stack trace entry.")
(defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ "
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r99565: Minor Python mode fix (Bug#5653).,
Chong Yidong <=