From: Stefan Monnier Date: Mon, 5 May 2008 07:10:25 +0000 (+0000) Subject: (python-block-pairs): Align finally with except. X-Git-Tag: emacs-pretest-23.0.90~5813 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c8a412cfd9ec585b1ca00c85492b10f633fc886;p=emacs.git (python-block-pairs): Align finally with except. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eea22d639d7..98e231fde97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 36bc1178288..259b095bc7d 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -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.")