|
From: Leon B. <le...@us...> - 2015-02-12 22:38:33
|
Update of /cvsroot/lush/tl3/help In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10361/help Modified Files: strings.hlp Log Message: added unicode string escapes Index: strings.hlp =================================================================== RCS file: /cvsroot/lush/tl3/help/strings.hlp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** strings.hlp 8 Feb 2015 02:42:42 -0000 1.2 --- strings.hlp 12 Feb 2015 22:38:30 -0000 1.3 *************** *** 24,32 **** <\^?> for a control character <control-?>, .IP ! <\+?> for iso-latin-1 character <meta-?> (high bit is set), .IP <\ooo> where <ooo> are octal digits for any ascii character, .IP <\xhh> where <hh> are hexadecimal digits for any ascii character. .PP --- 24,39 ---- <\^?> for a control character <control-?>, .IP ! <\+?> for iso-latin-1 character <meta-?> converted to the current locale. ! If no such representation exists, a single byte is output ! with the high bit set. .IP <\ooo> where <ooo> are octal digits for any ascii character, .IP <\xhh> where <hh> are hexadecimal digits for any ascii character. + .IP + <\uhhhh> or <\Uhhhhhh> for the representation of + unicode character <hhhh> or <hhhhhh> in + the current locale. If no such representation exists, + the utf8 representation is used. .PP |