(py-no-outdent-re): Added return, break, raise, continue since we

already outdent for those statements.
This commit is contained in:
Barry Warsaw 1996-08-12 19:52:27 +00:00
parent 8b004d36ed
commit f67a57efc4
1 changed files with 3 additions and 1 deletions

View File

@ -384,7 +384,9 @@ Currently-active file is at the head of the list.")
"while\\s +.*:"
"for\\s +.*:"
"if\\s +.*:"
"elif\\s +.*:")
"elif\\s +.*:"
"\\(return\\|break\\|raise\\|continue\\)[ \t\n]"
)
"\\|")
"\\)")
"Regexp matching lines to not outdent after.")