aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorChris Foote2010-08-22 20:44:55 -0400
committerChong Yidong2010-08-22 20:44:55 -0400
commit9027027d085973006891374fdc337334a5db7b5b (patch)
tree7ef366c4317116904c726ab9cb73fdb3bb08077b /lisp/progmodes/python.el
parentd8f0aff6cd7301e1399563dff793881f70fd7dbd (diff)
downloademacs-9027027d085973006891374fdc337334a5db7b5b.tar.gz
emacs-9027027d085973006891374fdc337334a5db7b5b.zip
* progmodes/python.el (python-block-pairs): Allow use of "finally" with "else" (Bug#3991).
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 2b09e346331..ed2a3236be1 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -755,7 +755,7 @@ Set `python-indent' locally to the value guessed."
755 '(("else" "if" "elif" "while" "for" "try" "except") 755 '(("else" "if" "elif" "while" "for" "try" "except")
756 ("elif" "if" "elif") 756 ("elif" "if" "elif")
757 ("except" "try" "except") 757 ("except" "try" "except")
758 ("finally" "try" "except")) 758 ("finally" "else" "try" "except"))
759 "Alist of keyword matches. 759 "Alist of keyword matches.
760The car of an element is a keyword introducing a statement which 760The car of an element is a keyword introducing a statement which
761can close a block opened by a keyword in the cdr.") 761can close a block opened by a keyword in the cdr.")