Steve Bennett
Steve Bennett
I think the problem is trying to do one in-tree build (shared) and one out-of-tree build (static). Do one or the other but not both. Since you want both builds,...
Thanks for the report. The issue is that there are two names that acmd can be known by in these namespaces. Either name will work, but they are the same...
My inclination is to leave it as is, but I'm open to other suggestions
I'm not sure I follow you. [info commands] returns commands that are reachable from the scope where it is invoked. Why would those be callable from another scope (such as...
Perhaps also consider: ``` proc aa {} {} alias aa2 aa puts [info commands aa*] ``` Gives: ``` aa2 aa ``` We wouldn't expect 'info commands' to de-duplicate these even...
FWIW, I have integrated win32 console support into my fork of linenoise (see https://github.com/msteveb/linenoise/commit/85f6003a0ee9d443966c43f99403bb319c555cd5)
Sure. See the latest commit in my fork.
Take a look at my fork, https://github.com/msteveb/linenoise, which has support for utf-8
The approach here is to avoid any reliance on system support for utf-8. For example, I have systems running uClibc without locale support which can still happily run a utf-8...
I'll have a think about this. I'm probably not inclined to bake in backward compatibility, but I'll consider an approach that will make it easy for you to do this...