On Tue, Apr 04, 2023 at 09:35:07AM +0200, Arash Esbati wrote: > Eli Zaretskii <e...@gnu.org> writes: > > > ??? What is your console output codepage set to? > > C:\>chcp > Aktive Codepage: 850. > > > What do you get from rpl_nl_langinfo in your case, and what happens in > > copy_converting, where degrade_utf8 is supposed to be called when > > Unicode quotes aren't supported? > > Sorry, I don't follow. What should I do in order to answer the question > above?
This would require using a debugger such as gdb or inserting debugging print statements into the source code of the program. Because info uses the terminal for display, it is usually best to debug it from a separate terminal window. I use a bash function for this: function attach () { gdb $1 `pgrep $1` } and run "attach ginfo" to attach to a running ginfo instance. This is harder than it used to be on many GNU/Linux distributions. Here's a Stack Exchange post I found about it: https://askubuntu.com/questions/41629/after-upgrade-gdb-wont-attach-to-process I don't know how this works with MinGW or MSYS though -- it's probably irrelevant.