]> code.delx.au - gnu-emacs/commitdiff
(python-block-pairs): Align finally with except.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 5 May 2008 07:10:25 +0000 (07:10 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 5 May 2008 07:10:25 +0000 (07:10 +0000)
lisp/ChangeLog
lisp/progmodes/python.el

index eea22d639d75050c8cffa35f401452a7e550813a..98e231fde97a6115d8ed5402ff381e76220331d4 100644 (file)
@@ -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.
index 36bc11782883a86ad4a11c36ad913fa729a652ce..259b095bc7de984bd25fe5337ea9b5eb40eaeffa 100644 (file)
@@ -747,7 +747,7 @@ Set `python-indent' locally to the value guessed."
   '(("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.")