Update of /cvsroot/squeak/squeak/platforms/unix/doc
In directory sc8-pr-cvs1:/tmp/cvs-serv25850
Modified Files:
squeak.1
Log Message:
Add -nointl, SQUEAK_NOINTL, notes on LC_ALL/LC_CTYPE and dead keys support.
Index: squeak.1
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/unix/doc/squeak.1,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** squeak.1 3 Sep 2003 18:05:54 -0000 1.9
--- squeak.1 16 Sep 2003 07:58:22 -0000 1.10
***************
*** 34,38 ****
.\" directory `platforms/unix/doc' before proceeding with any such use.
.\"
! .\" Last edited: 2003-09-03 19:53:48 by piumarta on emilia.inria.fr
.\"
.if @@\*(lq@ \{\
--- 34,38 ----
.\" directory `platforms/unix/doc' before proceeding with any such use.
.\"
! .\" Last edited: 2003-09-16 07:05:38 by piumarta on emilia.inria.fr
.\"
.if @@\*(lq@ \{\
***************
*** 450,453 ****
--- 450,461 ----
Backspace. The behaviour of Backspace is not changed.
.TP
+ .B \-nointl
+ disables the handling of dead keys on international keyboards.
+ Without this option, dead key handling is enabled if either
+ .B LC_ALL
+ or
+ .B LC_CTYPE
+ is set in the environment.
+ .TP
.B \-notitle
disables the title bar on the Squeak window (if the window manager supports it).
***************
*** 659,662 ****
--- 667,675 ----
\&'.
.TP
+ .B SQUEAK_NOINTL
+ equivalent to '\c
+ .B \-nointl\c
+ \&' if set.
+ .TP
.B SQUEAK_NOMIXER
equivalent to '\c
***************
*** 713,716 ****
--- 726,755 ----
\&'\-vm' cannnot be used to unload a driver that was loaded while
processing the contents of 'SQUEAK_VM'.
+ .PP
+ .B squeak
+ also checks the environment for
+ .B LC_ALL
+ and
+ .B LC_CTYPE\c
+ \&. If either of these variables is set then support for
+ international keyboards (including dead keys for diacritical marks) is
+ enabled. To prevent this support being enabled even when one or both
+ of these variables is set, use the '\-nointl' option (or set
+ .B SQUEAK_NOINTL
+ in the environment). For example, to start
+ .B squeak
+ with support for dead keys on Spanish keyboards, with Latin-1 encoding
+ of external characters and the default MacRoman internal font
+ encoding, run
+ .B squeak
+ like this:
+ .sp
+ .RS
+ .nf
+ export LC_CTYPE=es_ES
+ export SQUEAK_TEXTENC=latin1
+ squeak
+ .fi
+ .RE
.SH SCRIPTS
Squeak can load and execute a 'script' file containing Smalltalk code at
|