[squeak-dev] Unix keyboard events lose track when multiple keys pressed or keys held down

David T. Lewis lewis at mail.msen.com
Sun Jan 17 23:12:05 UTC 2021


On Sun, Jan 17, 2021 at 02:23:13PM -0800, tim Rowledge wrote:
> 
> 
> > On 2021-01-17, at 1:40 PM, Herbert K??nig <herbertkoenig at gmx.net> wrote:
> > 
> > If it's Scratch on a Raspi I can do for German.
> 
> Ah, excellent.
> 
> > -Where to find the script to add the LC_all?
> > -What to do / load?
> 
> The easiest thing to do on a Pi is probably
> 
> sudo nano /usr/bin/scratch
> just before the line "$WRAPPER "$VM" $VMOPTIONS "$IMAGE" "$DOCUMENT" $IMOPTIONS"
> add 
> unset $LC_ALL
> ctl-o
> y
> ctl-x
> 
> That should result in LC_ALL being undefined for the child process that actually runs scratch. I think.
> 
> tim
> --
> tim Rowledge; tim at rowledge.org; http://www.rowledge.org/tim
> Useful Latin Phrases:- Fac ut vivas. = Get a life.
> 
> 
>

Take out the dollar sign before LC_AL, so instead of this:

  unset $LC_ALL

Do this:

  unset LC_ALL

Tim, can you post a copy of the /usr/bin/scratch script so I can have a look at it?

Thanks,
Dave
 


More information about the Squeak-dev mailing list