From: Juergen Spitzmueller Date: Tue, 18 Jul 2023 05:28:18 +0000 (+0200) Subject: Fix thinspace search regex X-Git-Tag: 2.4-beta4~210 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=cd080da3c4c33c45233139203a974923df8f9815;p=lyx.git Fix thinspace search regex --- diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp index 6ccde78222..df5752f942 100644 --- a/src/lyxfind.cpp +++ b/src/lyxfind.cpp @@ -832,7 +832,7 @@ string string2regex(string in) blanks++; } else if ((tempx[i] == '\302' && tempx[i+1] == '\240') - || (tempx[i] == '\342' && tempx[i+1] == '\200')) { + || (tempx[i] == '\342' && tempx[i+1] == '\202')) { // protected space // thin space blanks++;