summaryrefslogtreecommitdiff
path: root/source/fitz/stext-search.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-11-07 19:32:37 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-11-08 17:57:09 +0100
commit94a5846502cd1f05ec4127872ef06dcd8606f34b (patch)
tree33fa0f4e8a4cedeecd8bde94782eed15f5110a9c /source/fitz/stext-search.c
parent0d74d784804c8ac5013a74d6008b33afbc122074 (diff)
downloadmupdf-94a5846502cd1f05ec4127872ef06dcd8606f34b.tar.xz
Remove broken bidi reordering code.
TODO: Implement visual to logical reordering on the fly when building the structured text line.
Diffstat (limited to 'source/fitz/stext-search.c')
-rw-r--r--source/fitz/stext-search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/stext-search.c b/source/fitz/stext-search.c
index d9da2900..c8fbdc0b 100644
--- a/source/fitz/stext-search.c
+++ b/source/fitz/stext-search.c
@@ -40,8 +40,8 @@ int fz_stext_char_count(fz_context *ctx, fz_stext_page *page)
const fz_stext_char *fz_stext_char_at(fz_context *ctx, fz_stext_page *page, int idx)
{
- static const fz_stext_char space = { ' ', 0, {0,0}, {0,0,0,0}, 0, NULL, NULL };
- static const fz_stext_char zero = { '\0', 0, {0,0}, {0,0,0,0}, 0, NULL, NULL };
+ static const fz_stext_char space = { ' ', {0,0}, {0,0,0,0}, 0, NULL, NULL };
+ static const fz_stext_char zero = { '\0', {0,0}, {0,0,0,0}, 0, NULL, NULL };
fz_stext_block *block;
fz_stext_line *line;
fz_stext_char *ch;