diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-05-27 12:53:03 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-05-27 14:02:07 +0100 |
commit | 4fc3c0324e080c3df7455a9ba8fcb60d6baba7eb (patch) | |
tree | a8ee8ed65a8ff19de431cfead76244e982c318d3 /fitz/fitz.h | |
parent | 868a21fe07d4ac760a3bc429edefe860b8255b6d (diff) | |
download | mupdf-4fc3c0324e080c3df7455a9ba8fcb60d6baba7eb.tar.xz |
Treat multiple whitespace in search strings as single.
Skip over successive whitespace in search string.
Make android use text_search.c
Diffstat (limited to 'fitz/fitz.h')
-rw-r--r-- | fitz/fitz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h index 52264d92..8817672d 100644 --- a/fitz/fitz.h +++ b/fitz/fitz.h @@ -2292,7 +2292,7 @@ void fz_print_text_page(fz_context *ctx, fz_output *out, fz_text_page *page); NOTE: This is an experimental interface and subject to change without notice. */ -int fz_search_text_page(fz_context *ctx, fz_text_page *text, char *needle, fz_rect *hit_bbox, int hit_max); +int fz_search_text_page(fz_context *ctx, fz_text_page *text, const char *needle, fz_rect *hit_bbox, int hit_max); /* fz_highlight_selection: Return a list of rectangles to highlight given a selection rectangle. |