Changeset 2410
- Timestamp:
- 05/29/07 13:04:51 (2 years ago)
- Files:
-
- pyreadline/trunk/doc/ChangeLog (modified) (1 diff)
- pyreadline/trunk/pyreadline/lineeditor/lineobj.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyreadline/trunk/doc/ChangeLog
r2382 r2410 1 2007-05-24 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu> 2 * Fixing bug in copy_selection_to_clipboard. Didn't work 3 when selection started at beginning of line 4 1 5 2007-05-24 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu> 2 6 * Additions to manual pyreadline/trunk/pyreadline/lineeditor/lineobj.py
r2340 r2410 718 718 def copy_selection_to_clipboard(self): # () 719 719 '''Copy the text in the region to the windows clipboard.''' 720 if self.enable_win32_clipboard and self.enable_selection and self.selection_mark> 0:720 if self.enable_win32_clipboard and self.enable_selection and self.selection_mark>=0: 721 721 selection_mark=min(self.selection_mark,len(self.line_buffer)) 722 722 cursor=min(self.point,len(self.line_buffer))
