comparison src/search.c @ 647:b39c14581166

[xemacs-hg @ 2001-08-13 04:45:47 by ben] removal of unsigned, size_t, etc.
author ben
date Mon, 13 Aug 2001 04:46:48 +0000
parents 190b164ddcac
children fdefd0186b75
comparison
equal deleted inserted replaced
646:00c54252fe4f 647:b39c14581166
874 /* If ^ was the first character, complement the fastmap. 874 /* If ^ was the first character, complement the fastmap.
875 We don't complement the range table, however; we just use negate 875 We don't complement the range table, however; we just use negate
876 in the comparisons below. */ 876 in the comparisons below. */
877 877
878 if (negate) 878 if (negate)
879 for (i = 0; i < (int) (sizeof fastmap); i++) 879 for (i = 0; i < (int) (sizeof (fastmap)); i++)
880 fastmap[i] ^= 1; 880 fastmap[i] ^= 1;
881 881
882 { 882 {
883 Bufpos start_point = BUF_PT (buf); 883 Bufpos start_point = BUF_PT (buf);
884 884