On Thu, 18 Dec 2014, Samantha Michelle Smith wrote: > Hey guys. This is my first post to this list, so if y'all have some > extra etiquette I'm not aware of, my apologies. > > I'm using FreeBSD 10.1 on a server, having just upgraded from 10.0. > Fish is my preferred shell for my normal user. > > For some reason, when fish is automatically launched upon login, or > manually by any other user, the user is presented with text that reads > "fish:" > Any input given is shown on the screen but not acted upon. > This does not occur for any other shell, either in base or installed from > ports. > I was wondering if anyone else has ever experienced this, and if so, > what their solution was. I'm currently troubleshooting it, so if I > figure out what's going on, I'll definitely post a followup email.
Hi Samantha, There was a change between 10.0 and 10.1 that broke some old code in fish. It's been removed in the version of fish under development and I sent a patch (below) to the FreeBSD maintainer, but they are on holiday so I don't think it's been added to the package yet. If you are happy building from source, either use the patch below against 2.1.1, or try the current git master. David Adam [email protected] --- diff --git a/env_universal_common.cpp b/env_universal_common.cpp index 2b12cf1..2992a88 100644 --- a/env_universal_common.cpp +++ b/env_universal_common.cpp @@ -151,6 +151,7 @@ static const char *iconv_wide_names_4[]= { "wchar_t", "WCHAR_T", "wchar", "WCHAR", + "UCS-4-INTERNAL", "ucs-4", "UCS-4", "ucs4", "UCS4", "utf-32", "UTF-32", ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
