Fix for bug #8548: txt_copy_sel in txt_cut_sel only copied string in a local buffer.

Changed txt_cut_sel to use the clipboard.
This commit is contained in:
2008-03-13 17:30:29 +00:00
parent abc79af975
commit 217db14ae7

View File

@@ -1033,7 +1033,7 @@ int txt_find_string(Text *text, char *findstr)
void txt_cut_sel (Text *text)
{
txt_copy_sel(text);
txt_copy_clipboad(text);
txt_delete_sel(text);
txt_make_dirty(text);