Mercurial > emacs
diff src/keymap.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 | 1248b61b7baf |
| children | 97673fa0eaa7 |
line wrap: on
line diff
--- a/src/keymap.c Fri Nov 02 20:14:02 2001 +0000 +++ b/src/keymap.c Fri Nov 02 20:46:55 2001 +0000 @@ -1958,7 +1958,7 @@ /* Handle a generic character. */ Lisp_Object name; name = CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX); - CHECK_STRING (name, 0); + CHECK_STRING (name); return concat2 (build_string ("Character set "), name); } else @@ -2037,7 +2037,7 @@ unsigned char str[6]; int c; - CHECK_NUMBER (character, 0); + CHECK_NUMBER (character); c = XINT (character); if (!SINGLE_BYTE_CHAR_P (c)) @@ -2941,7 +2941,7 @@ int count = specpdl_ptr - specpdl; specbind (Qstandard_output, Fcurrent_buffer ()); - CHECK_VECTOR_OR_CHAR_TABLE (vector, 0); + CHECK_VECTOR_OR_CHAR_TABLE (vector); describe_vector (vector, Qnil, describe_vector_princ, 0, Qnil, Qnil, (int *)0, 0); @@ -3306,7 +3306,7 @@ Lisp_Object regexp, predicate; { struct gcpro gcpro1, gcpro2; - CHECK_STRING (regexp, 0); + CHECK_STRING (regexp); apropos_predicate = predicate; GCPRO2 (apropos_predicate, apropos_accumulate); apropos_accumulate = Qnil;
