Mercurial > hg > xemacs-beta
comparison src/regex.h @ 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 | 6728e641994e |
children | ba4677f54a05 |
comparison
equal
deleted
inserted
replaced
1467:e5da225ea2ca | 1468:0f42689481f0 |
---|---|
416 | 416 |
417 /* This is the structure we store register match data in. See | 417 /* This is the structure we store register match data in. See |
418 regex.texinfo for a full description of what registers match. */ | 418 regex.texinfo for a full description of what registers match. */ |
419 struct re_registers | 419 struct re_registers |
420 { | 420 { |
421 int num_regs; | 421 int num_regs; /* number of registers allocated */ |
422 regoff_t *start; | 422 regoff_t *start; |
423 regoff_t *end; | 423 regoff_t *end; |
424 }; | 424 }; |
425 | 425 |
426 | 426 |