From cd080da3c4c33c45233139203a974923df8f9815 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Tue, 18 Jul 2023 07:28:18 +0200 Subject: [PATCH] Fix thinspace search regex --- src/lyxfind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; -- 2.39.5