diff src/w16select.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 6145836b795c
children 63819c5d6049
line wrap: on
line diff
--- a/src/w16select.c	Fri Nov 02 20:14:02 2001 +0000
+++ b/src/w16select.c	Fri Nov 02 20:46:55 2001 +0000
@@ -491,12 +491,12 @@
   int charset_info;
   int no_crlf_conversion;
 
-  CHECK_STRING (string, 0);
+  CHECK_STRING (string);
   
   if (NILP (frame))
     frame = Fselected_frame ();
 
-  CHECK_LIVE_FRAME (frame, 0);
+  CHECK_LIVE_FRAME (frame);
   if ( !FRAME_MSDOS_P (XFRAME (frame)))
     goto done;
   
@@ -605,7 +605,7 @@
   if (NILP (frame))
     frame = Fselected_frame ();
 
-  CHECK_LIVE_FRAME (frame, 0);
+  CHECK_LIVE_FRAME (frame);
   if ( !FRAME_MSDOS_P (XFRAME (frame)))
     goto done;
   
@@ -701,7 +701,7 @@
   (selection)
      Lisp_Object selection;
 {
-  CHECK_SYMBOL (selection, 0);
+  CHECK_SYMBOL (selection);
 
   /* Return nil for SECONDARY selection.  For PRIMARY (or nil)
      selection, check if there is some text on the kill-ring;