X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/7a3fbdafb485690f97464e9f44ecb775fae9436b..73ca1783e8c72437ae0f0962e9a793f8853eeec5:/windows/window.c diff --git a/windows/window.c b/windows/window.c index 7f23767c..fe16c949 100644 --- a/windows/window.c +++ b/windows/window.c @@ -2247,7 +2247,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message, term_copyall(term); break; case IDM_PASTE: - term_do_paste(term); + request_paste(NULL); break; case IDM_CLRSB: term_clrsb(term); @@ -3813,7 +3813,7 @@ static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam, return 0; } if (wParam == VK_INSERT && shift_state == 1) { - term_do_paste(term); + request_paste(NULL); return 0; } if (left_alt && wParam == VK_F4 && cfg.alt_f4) { @@ -4920,8 +4920,6 @@ static DWORD WINAPI clipboard_read_threadfunc(void *param) static int process_clipdata(HGLOBAL clipdata, int unicode) { - static wchar_t *converted = 0; - sfree(clipboard_contents); clipboard_contents = NULL; clipboard_length = 0;