diff options
| author | Kurt B. Kaiser <kbk@shore.net> | 2008-02-14 04:30:55 (GMT) |
|---|---|---|
| committer | Kurt B. Kaiser <kbk@shore.net> | 2008-02-14 04:30:55 (GMT) |
| commit | f9259d72c8657d47cbcaa873f29783ce005ebc8e (patch) | |
| tree | 23a91d75f6a54ffad76ad29bf3358595d09bb71d | |
| parent | 2fbad0e99bf581dc8e5e3afa8253765ebafd9493 (diff) | |
| download | cpython-f9259d72c8657d47cbcaa873f29783ce005ebc8e.zip cpython-f9259d72c8657d47cbcaa873f29783ce005ebc8e.tar.gz cpython-f9259d72c8657d47cbcaa873f29783ce005ebc8e.tar.bz2 | |
format_paragraph_event wasn't returning 'break'
Backport r59463
| -rw-r--r-- | Lib/idlelib/FormatParagraph.py | 1 | ||||
| -rw-r--r-- | Lib/idlelib/NEWS.txt | 2 |
2 files changed, 3 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(".")) diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index aa7419f..5c08a92 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,8 @@ What's New in IDLE 1.2.2c1? *Release date: XX-FEB-2008* +- format_paragraph_event wasn't returning a 'break' (backport r59453) + - Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented; mouse and cursor selection in ACWindow implemented; double Tab inserts current selection and closes ACW (similar to double-click and Return); scroll |
