diff options
| author | Chris Foote | 2010-08-22 20:44:55 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-08-22 20:44:55 -0400 |
| commit | 9027027d085973006891374fdc337334a5db7b5b (patch) | |
| tree | 7ef366c4317116904c726ab9cb73fdb3bb08077b /lisp/progmodes/python.el | |
| parent | d8f0aff6cd7301e1399563dff793881f70fd7dbd (diff) | |
| download | emacs-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.el | 2 |
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. |
| 760 | The car of an element is a keyword introducing a statement which | 760 | The car of an element is a keyword introducing a statement which |
| 761 | can close a block opened by a keyword in the cdr.") | 761 | can close a block opened by a keyword in the cdr.") |