From fd1ae6113165e5ded52cdbe881a7078ddba8c21a Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 7 Apr 2018 11:43:28 +0200 Subject: [PATCH] Let search for more unbreakable spaces. Refs #20 --- src/viewer/text/search.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/viewer/text/search.c b/src/viewer/text/search.c index 59e4aaab2..c1174ed38 100644 --- a/src/viewer/text/search.c +++ b/src/viewer/text/search.c @@ -77,9 +77,6 @@ add_srch_chr(struct document *document, UCHAR c, int x, int y, int nn) if (document->search) { int n = document->nsearch; - if (c == ' ' && document->search[n - 1].c == ' ') - return; - document->search[n].c = c; document->search[n].x = x; document->search[n].y = y;