diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-29 19:36:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-29 19:36:39 +0000 |
commit | 4fcecab1070609b0f372bdbf50dbe9a0a3ee4f5b (patch) | |
tree | 1283db6f97613808c9108a6f05e2a5f4f8a08aa6 | |
parent | c58b2b4d7914cee8ae4bd39f3651ef090be10cab (diff) | |
download | emacs-4fcecab1070609b0f372bdbf50dbe9a0a3ee4f5b.tar.gz |
(POP_FAILURE_POINT): Use .word.integer.
-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 41f2cafa539..e83e28dac1e 100644 --- a/src/regex.c +++ b/src/regex.c @@ -1295,7 +1295,7 @@ typedef struct { \ for (this_reg = highest_active_reg; this_reg > high_reg; this_reg--) \ { \ - reg_info[this_reg].word = 0; \ + reg_info[this_reg].word.integer = 0; \ regend[this_reg] = 0; \ regstart[this_reg] = 0; \ } \ |