(python-block-pairs): Align finally with except.

This commit is contained in:
Stefan Monnier 2008-05-05 07:10:25 +00:00
parent 11a36f646e
commit 0c8a412cfd
2 changed files with 5 additions and 1 deletions

View 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.

View 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.")