diff src/w32select.c @ 40656:cdfd4d09b79a

Update usage of CHECK_ macros (remove unused second argument).
author Pavel Jan?k <Pavel@Janik.cz>
date Fri, 02 Nov 2001 20:46:55 +0000
parents e7765cb122c3
children f66d09d1bb2f
line wrap: on
line diff
--- a/src/w32select.c	Fri Nov 02 20:14:02 2001 +0000
+++ b/src/w32select.c	Fri Nov 02 20:46:55 2001 +0000
@@ -58,7 +58,7 @@
   BOOL ok = FALSE;
   
   if (!NILP (frame))
-    CHECK_LIVE_FRAME (frame, 0);
+    CHECK_LIVE_FRAME (frame);
   
   BLOCK_INPUT;
   
@@ -113,10 +113,10 @@
   unsigned char *src;
   unsigned char *dst;
 
-  CHECK_STRING (string, 0);
+  CHECK_STRING (string);
   
   if (!NILP (frame))
-    CHECK_LIVE_FRAME (frame, 0);
+    CHECK_LIVE_FRAME (frame);
   
   BLOCK_INPUT;
 
@@ -257,7 +257,7 @@
   Lisp_Object ret = Qnil;
   
   if (!NILP (frame))
-    CHECK_LIVE_FRAME (frame, 0);
+    CHECK_LIVE_FRAME (frame);
   
   BLOCK_INPUT;
   
@@ -404,7 +404,7 @@
   (selection)
      Lisp_Object selection;
 {
-  CHECK_SYMBOL (selection, 0);
+  CHECK_SYMBOL (selection);
 
   /* Return nil for PRIMARY and SECONDARY selections; for CLIPBOARD, check
      if the clipboard currently has valid text format contents. */