# HG changeset patch # User Stefan Monnier # Date 1209971425 0 # Node ID a088027cd6c23819948ce1206b20320a03e38a79 # Parent 9cc7bc51e055bb2a5e782684062137ecbd223dfc (python-block-pairs): Align finally with except. diff -r 9cc7bc51e055 -r a088027cd6c2 lisp/ChangeLog --- 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 (tiny change) + + * progmodes/python.el (python-block-pairs): Align finally with except. + 2008-05-05 Stefan Monnier * vc-rcs.el (vc-rcs-fetch-master-state): Fix inf-loop. diff -r 9cc7bc51e055 -r a088027cd6c2 lisp/progmodes/python.el --- 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.")