changeset 94628:a088027cd6c2

(python-block-pairs): Align finally with except.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 05 May 2008 07:10:25 +0000
parents 9cc7bc51e055
children fa335e247f6b
files lisp/ChangeLog lisp/progmodes/python.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon May 05 06:38:04 2008 +0000
+++ b/lisp/ChangeLog	Mon May 05 07:10:25 2008 +0000
@@ -1,3 +1,7 @@
+2008-05-05  Phil Sung  <psung@mit.edu>  (tiny change)
+
+	* progmodes/python.el (python-block-pairs): Align finally with except.
+
 2008-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop.
--- a/lisp/progmodes/python.el	Mon May 05 06:38:04 2008 +0000
+++ b/lisp/progmodes/python.el	Mon May 05 07:10:25 2008 +0000
@@ -747,7 +747,7 @@
   '(("else" "if" "elif" "while" "for" "try" "except")
     ("elif" "if" "elif")
     ("except" "try" "except")
-    ("finally" "try"))
+    ("finally" "try" "except"))
   "Alist of keyword matches.
 The car of an element is a keyword introducing a statement which
 can close a block opened by a keyword in the cdr.")