DavidSpickett wrote:

> TrimAndPad also used Unicode aware functions, which fixes the known issues 
> with Unicode (though no command option actually uses Unicode at the moment).

Just want to note that it's not just that we don't use them yet. I tried it and 
got a lot of warnings about unknown escape sequences because our TableGen 
backend converts them into a C++ string like `\F0\F1...` rather than `\xF0...`. 
We use `llvm::printEscapedString` to create that string.

I doubt it's that complex to fix but I'm not going to look into it myself since 
we don't have a reason for it yet. If someone wants to translate the text for 
example, they'll have to fix that part.

https://github.com/llvm/llvm-project/pull/183314
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to