comparison etc/PROBLEMS @ 76824:213bd9333baa

(MS-Windows problems): How to bind non-ASCII keys with modifiers.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 31 Mar 2007 10:01:51 +0000
parents 580836db661d
children 8317d35172e4
comparison
equal deleted inserted replaced
76823:13dc9d1d73e2 76824:213bd9333baa
2133 the Hebrew input method, type "C-x RET k iso-8859-8 RET". (Emacs 2133 the Hebrew input method, type "C-x RET k iso-8859-8 RET". (Emacs
2134 ought to recognize the Windows language-change event and set up the 2134 ought to recognize the Windows language-change event and set up the
2135 appropriate keyboard encoding automatically, but it doesn't do that 2135 appropriate keyboard encoding automatically, but it doesn't do that
2136 yet.) 2136 yet.)
2137 2137
2138 To bind keys that produce non-ASCII characters with modifiers, you
2139 must specify raw byte codes. For instance, if you want to bind
2140 META-a-grave to a command, you need to specify this in your `~/.emacs':
2141
2142 (global-set-key [?\M-\340] ...)
2143
2144 The above example is for the Latin-1 environment where the byte code
2145 of the encoded a-grave is 340 octal. For other environments, use the
2146 encoding appropriate to that environment.
2147
2138 The %b specifier for format-time-string does not produce abbreviated 2148 The %b specifier for format-time-string does not produce abbreviated
2139 month names with consistent widths for some locales on some versions 2149 month names with consistent widths for some locales on some versions
2140 of Windows. This is caused by a deficiency in the underlying system 2150 of Windows. This is caused by a deficiency in the underlying system
2141 library function. 2151 library function.
2142 2152