diff options
| author | Richard M. Stallman | 1993-11-15 04:04:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-15 04:04:59 +0000 |
| commit | 368481a5385ae8a975e07f87f4a1a84e48f1cc00 (patch) | |
| tree | 5168ed260c12ccddb4d7104d70df34615925893d | |
| parent | bdb6dc9dc6af21cff70ed4403508f21e10bd0e2c (diff) | |
| download | emacs-368481a5385ae8a975e07f87f4a1a84e48f1cc00.tar.gz emacs-368481a5385ae8a975e07f87f4a1a84e48f1cc00.zip | |
*** empty log message ***
| -rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index 81b06ff5fe1..3d4346949d1 100644 --- a/src/regex.c +++ b/src/regex.c | |||
| @@ -3021,7 +3021,7 @@ re_set_registers (bufp, regs, num_regs, starts, ends) | |||
| 3021 | { | 3021 | { |
| 3022 | bufp->regs_allocated = REGS_UNALLOCATED; | 3022 | bufp->regs_allocated = REGS_UNALLOCATED; |
| 3023 | regs->num_regs = 0; | 3023 | regs->num_regs = 0; |
| 3024 | regs->start = regs->end = (regoff_t) 0; | 3024 | regs->start = regs->end = (regoff_t *) 0; |
| 3025 | } | 3025 | } |
| 3026 | } | 3026 | } |
| 3027 | 3027 | ||