commit 14b707a361619d635fed548d3bad14006530a1e0
Author: Kornel Benko <[email protected]>
Date:   Tue Apr 29 12:52:44 2025 +0200

    Find-ADV: Handle some general punctuation unicodes
    
    For the regex they appear now as regular chars
---
 src/lyxfind.cpp | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/src/lyxfind.cpp b/src/lyxfind.cpp
index e713f39a4a..c4cc56a084 100644
--- a/src/lyxfind.cpp
+++ b/src/lyxfind.cpp
@@ -2152,17 +2152,16 @@ void static fillMissingUnicodesymbols()
        addAccents("\\thainine", getutf8(0x0e59));
        addAccents("\\thaiAngkhankhu", getutf8(0x0e5a));
        addAccents("\\thaiKhomut", getutf8(0x0e5b));
-       addAccents("\\dag", getutf8(0x2020));
-       addAccents("\\dagger", getutf8(0x2020));
-       addAccents("\\textdagger", getutf8(0x2020));
-       addAccents("\\ddag", getutf8(0x2021));
-       addAccents("\\ddagger", getutf8(0x2021));
-       addAccents("\\textdaggerdbl", getutf8(0x2021));
-       addAccents("\\textbullet", getutf8(0x2022));
-       addAccents("\\bullet", getutf8(0x2022));
-       addAccents("\\dots", getutf8(0x2026));
-       addAccents("\\ldots", getutf8(0x2026));
-       addAccents("\\textellipsis", getutf8(0x2026));
+       addAccents("\\dag", getutf8(0xf0320));
+       addAccents("\\dagger", getutf8(0xf0320));
+       addAccents("\\ddag", getutf8(0xf0321));
+       addAccents("\\ddagger", getutf8(0xf0321));
+       addAccents("\\textdaggerdbl", getutf8(0xf0321));
+       addAccents("\\textbullet", getutf8(0xf0322));
+       addAccents("\\bullet", getutf8(0xf0322));
+       addAccents("\\dots", getutf8(0xf0326));
+       addAccents("\\ldots", getutf8(0xf0326));
+       addAccents("\\textellipsis", getutf8(0xf0326));
        addAccents("\\textasciiacute", getutf8(0x2032));
        addAccents("\\prime", getutf8(0x2032));
        addAccents("\\textacutedbl", getutf8(0x2033));
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to