From f6d76d1c6cc380bd9cd8911214e18eca247c7bf4 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 10 Oct 2014 12:38:48 +0300 Subject: [PATCH] Fixed crash at startup by starting bidi_bracket_type_t from 1, not zero. --- src/dispextern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispextern.h b/src/dispextern.h index b7a4225221a..cfe834e572a 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1902,7 +1902,7 @@ typedef enum { member of unidata-prop-alist (in admin/unidata/unidata-gen.el) for Unicode character property `bracket-type'. */ typedef enum { - BIDI_BRACKET_NONE = 0, + BIDI_BRACKET_NONE = 1, BIDI_BRACKET_OPEN, BIDI_BRACKET_CLOSE } bidi_bracket_type_t; -- 2.39.5