diff options
| author | Eli Zaretskii | 2014-10-15 15:23:59 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-10-15 15:23:59 +0300 |
| commit | 48af58622bd07f37124a7b35f903b00de119f4a8 (patch) | |
| tree | d9f5f746c295c61c574ab4d0e1add789ff56c936 /src | |
| parent | 4669732cc0923dacddbd31c67378746822a69673 (diff) | |
| download | emacs-48af58622bd07f37124a7b35f903b00de119f4a8.tar.gz emacs-48af58622bd07f37124a7b35f903b00de119f4a8.zip | |
Fix initialization of flags when pushing BPA stack.
Diffstat (limited to 'src')
| -rw-r--r-- | src/bidi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bidi.c b/src/bidi.c index b61fac1f03c..464879ddf98 100644 --- a/src/bidi.c +++ b/src/bidi.c | |||
| @@ -2359,6 +2359,7 @@ typedef struct bpa_stack_entry { | |||
| 2359 | } \ | 2359 | } \ |
| 2360 | bpa_stack[bpa_sp].close_bracket_char = bidi_mirror_char (bidi_it->ch); \ | 2360 | bpa_stack[bpa_sp].close_bracket_char = bidi_mirror_char (bidi_it->ch); \ |
| 2361 | bpa_stack[bpa_sp].open_bracket_idx = bidi_cache_last_idx; \ | 2361 | bpa_stack[bpa_sp].open_bracket_idx = bidi_cache_last_idx; \ |
| 2362 | bpa_stack[bpa_sp].flags = 0; \ | ||
| 2362 | STORE_BRACKET_CHARPOS; \ | 2363 | STORE_BRACKET_CHARPOS; \ |
| 2363 | } while (0) | 2364 | } while (0) |
| 2364 | 2365 | ||