commit | f9259d72c8657d47cbcaa873f29783ce005ebc8e | [log] [tgz] |
---|---|---|
author | Kurt B. Kaiser <kbk@shore.net> | Thu Feb 14 04:30:55 2008 +0000 |
committer | Kurt B. Kaiser <kbk@shore.net> | Thu Feb 14 04:30:55 2008 +0000 |
tree | 23a91d75f6a54ffad76ad29bf3358595d09bb71d | |
parent | 2fbad0e99bf581dc8e5e3afa8253765ebafd9493 [diff] [blame] |
format_paragraph_event wasn't returning 'break' Backport r59463
diff --git a/Lib/idlelib/FormatParagraph.py b/Lib/idlelib/FormatParagraph.py index ed9f28d..f30898e 100644 --- a/Lib/idlelib/FormatParagraph.py +++ b/Lib/idlelib/FormatParagraph.py
@@ -75,6 +75,7 @@ else: text.mark_set("insert", last) text.see("insert") + return "break" def find_paragraph(text, mark): lineno, col = map(int, mark.split("."))