From 0c8a412cfd9ec585b1ca00c85492b10f633fc886 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 5 May 2008 07:10:25 +0000 Subject: [PATCH] (python-block-pairs): Align finally with except. --- lisp/ChangeLog | 4 ++++ lisp/progmodes/python.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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.") -- 2.11.4.GIT