Mercurial > hg > xemacs-beta
diff src/search.c @ 440:8de8e3f6228a r21-2-28
Import from CVS: tag r21-2-28
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:33:38 +0200 |
parents | 3ecd8885ac67 |
children | abe6d1db359e |
line wrap: on
line diff
--- a/src/search.c Mon Aug 13 11:32:27 2007 +0200 +++ b/src/search.c Mon Aug 13 11:33:38 2007 +0200 @@ -701,7 +701,7 @@ } Bytind -bi_find_next_emchar_in_string (struct Lisp_String* str, Emchar target, Bytind st, +bi_find_next_emchar_in_string (Lisp_String* str, Emchar target, Bytind st, EMACS_INT count) { /* This function has been Mule-ized. */ @@ -771,8 +771,7 @@ unsigned char fastmap[0400]; int negate = 0; REGISTER int i; - struct Lisp_Char_Table *syntax_table = - XCHAR_TABLE (buf->mirror_syntax_table); + Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table); Bufpos limit; if (NILP (lim)) @@ -1584,8 +1583,7 @@ Charcount i, len; EMACS_INT punct_count = 0, word_count = 0; struct buffer *buf = decode_buffer (buffer, 0); - struct Lisp_Char_Table *syntax_table = - XCHAR_TABLE (buf->mirror_syntax_table); + Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table); CHECK_STRING (string); len = XSTRING_CHAR_LENGTH (string); @@ -1845,7 +1843,7 @@ Emchar c, prevc; Charcount inslen; struct buffer *buf; - struct Lisp_Char_Table *syntax_table; + Lisp_Char_Table *syntax_table; int mc_count; Lisp_Object buffer; int_dynarr *ul_action_dynarr = 0;