comparison src/callint.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 184e0d756547
children 81176c96cc2f
comparison
equal deleted inserted replaced
40655:45453187feeb 40656:cdfd4d09b79a
221 221
222 if (NILP (keys)) 222 if (NILP (keys))
223 keys = this_command_keys, key_count = this_command_key_count; 223 keys = this_command_keys, key_count = this_command_key_count;
224 else 224 else
225 { 225 {
226 CHECK_VECTOR (keys, 3); 226 CHECK_VECTOR (keys);
227 key_count = XVECTOR (keys)->size; 227 key_count = XVECTOR (keys)->size;
228 } 228 }
229 229
230 /* Save this now, since use of minibuffer will clobber it. */ 230 /* Save this now, since use of minibuffer will clobber it. */
231 prefix_arg = Vcurrent_prefix_arg; 231 prefix_arg = Vcurrent_prefix_arg;