aboutsummaryrefslogtreecommitdiffstats
path: root/lib/regcomp.c
diff options
context:
space:
mode:
authorPaul Eggert2023-07-09 13:05:01 -0700
committerPaul Eggert2023-07-09 13:45:13 -0700
commitc3cfada3c075991d7a38fafbdcf5daba06794d7a (patch)
tree651fdeb7a99e6d26936bf119abc37c1f45f260b3 /lib/regcomp.c
parent9c282faf26eb517532508d466270b7b97d436c70 (diff)
downloademacs-c3cfada3c075991d7a38fafbdcf5daba06794d7a.tar.gz
emacs-c3cfada3c075991d7a38fafbdcf5daba06794d7a.zip
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'lib/regcomp.c')
-rw-r--r--lib/regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regcomp.c b/lib/regcomp.c
index 89478396855..1f6a131107b 100644
--- a/lib/regcomp.c
+++ b/lib/regcomp.c
@@ -905,7 +905,7 @@ init_word_char (re_dfa_t *dfa)
905 bitset_word_t bits3 = 0x07fffffe; 905 bitset_word_t bits3 = 0x07fffffe;
906 if (BITSET_WORD_BITS == 64) 906 if (BITSET_WORD_BITS == 64)
907 { 907 {
908 /* Pacify gcc -Woverflow on 32-bit platformns. */ 908 /* Pacify gcc -Woverflow on 32-bit platforms. */
909 dfa->word_char[0] = bits1 << 31 << 1 | bits0; 909 dfa->word_char[0] = bits1 << 31 << 1 | bits0;
910 dfa->word_char[1] = bits3 << 31 << 1 | bits2; 910 dfa->word_char[1] = bits3 << 31 << 1 | bits2;
911 i = 2; 911 i = 2;