]> git.lyx.org Git - features.git/commitdiff
Use non breaking space
authorRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 27 Jul 2023 20:36:11 +0000 (16:36 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 27 Jul 2023 20:36:11 +0000 (16:36 -0400)
src/BiblioInfo.cpp

index 29ade833ce54ab1107d5cee9a5a315963e63c89c..b7ec2b8b3a7e02e305518f882c60e6853caffed9 100644 (file)
@@ -379,7 +379,7 @@ docstring convertLaTeXCommands(docstring const & str)
                }
 
                if (ch == '~') {
-                       ret += ' ';
+                       ret += 0x00a0;
                        val = val.substr(1);
                        continue;
                }