comparison src/regex.c @ 1468:0f42689481f0

[xemacs-hg @ 2003-05-09 14:52:37 by stephent] revert clobber match data <873cjoi38t.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Fri, 09 May 2003 14:52:43 +0000
parents 74cb069b8417
children 0ad2242c43a4
comparison
equal deleted inserted replaced
1467:e5da225ea2ca 1468:0f42689481f0
6078 pos only once. */ 6078 pos only once. */
6079 /* emch1 is the character before d, syn1 is the syntax of 6079 /* emch1 is the character before d, syn1 is the syntax of
6080 emch1, emch2 is the character at d, and syn2 is the 6080 emch1, emch2 is the character at d, and syn2 is the
6081 syntax of emch2. */ 6081 syntax of emch2. */
6082 Ichar emch1, emch2; 6082 Ichar emch1, emch2;
6083 int syn1, syn2; 6083 int syn1 = 0,
6084 syn2 = 0;
6084 re_char *d_before, *d_after; 6085 re_char *d_before, *d_after;
6085 int result, 6086 int result,
6086 at_beg = AT_STRINGS_BEG (d), 6087 at_beg = AT_STRINGS_BEG (d),
6087 at_end = AT_STRINGS_END (d); 6088 at_end = AT_STRINGS_END (d);
6088 #ifdef emacs 6089 #ifdef emacs