summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/FormatParagraph.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2007-12-11 00:04:57 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2007-12-11 00:04:57 (GMT)
commit0c64fb435aab0ae8f8ce93634c156b2eedede184 (patch)
treed2ba9da8b0f84efd605f1a18748750acf1c12956 /Lib/idlelib/FormatParagraph.py
parent137c49ce6a69acb2e4c649d001882e4f7a4ee45a (diff)
downloadcpython-0c64fb435aab0ae8f8ce93634c156b2eedede184.zip
cpython-0c64fb435aab0ae8f8ce93634c156b2eedede184.tar.gz
cpython-0c64fb435aab0ae8f8ce93634c156b2eedede184.tar.bz2
format_paragraph_event wasn't returning 'break'
Diffstat (limited to 'Lib/idlelib/FormatParagraph.py')
-rw-r--r--Lib/idlelib/FormatParagraph.py1
1 files changed, 1 insertions, 0 deletions
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 @@ class FormatParagraph:
else:
text.mark_set("insert", last)
text.see("insert")
+ return "break"
def find_paragraph(text, mark):
lineno, col = map(int, mark.split("."))