aboutsummaryrefslogtreecommitdiffstats
path: root/src/w16select.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/w16select.c')
-rw-r--r--src/w16select.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w16select.c b/src/w16select.c
index a3f6f1fb9ae..b8aaa3619ba 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -459,7 +459,7 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat
459 if ( !FRAME_MSDOS_P (XFRAME (frame))) 459 if ( !FRAME_MSDOS_P (XFRAME (frame)))
460 goto done; 460 goto done;
461 461
462 BLOCK_INPUT; 462 block_input ();
463 463
464 if (!open_clipboard ()) 464 if (!open_clipboard ())
465 goto error; 465 goto error;
@@ -520,7 +520,7 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat
520 520
521 unblock: 521 unblock:
522 xfree (dst); 522 xfree (dst);
523 UNBLOCK_INPUT; 523 unblock_input ();
524 524
525 /* Notify user if the text is too large to fit into DOS memory. 525 /* Notify user if the text is too large to fit into DOS memory.
526 (This will happen somewhere after 600K bytes (470K in DJGPP v1.x), 526 (This will happen somewhere after 600K bytes (470K in DJGPP v1.x),
@@ -565,7 +565,7 @@ DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_dat
565 if ( !FRAME_MSDOS_P (XFRAME (frame))) 565 if ( !FRAME_MSDOS_P (XFRAME (frame)))
566 goto done; 566 goto done;
567 567
568 BLOCK_INPUT; 568 block_input ();
569 569
570 if (!open_clipboard ()) 570 if (!open_clipboard ())
571 goto unblock; 571 goto unblock;
@@ -626,7 +626,7 @@ DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_dat
626 close_clipboard (); 626 close_clipboard ();
627 627
628 unblock: 628 unblock:
629 UNBLOCK_INPUT; 629 unblock_input ();
630 630
631 done: 631 done:
632 632