aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2007-03-31 10:01:51 +0000
committerEli Zaretskii2007-03-31 10:01:51 +0000
commit868c31fe390cfa0b95eceb74266d2770447ef8d4 (patch)
treeef6a8a0e7f4da6be88610510e89f021be87820c4
parentfd1e2cdef8fcf3fcb21be5453b9d9268aa9d0f32 (diff)
downloademacs-868c31fe390cfa0b95eceb74266d2770447ef8d4.tar.gz
emacs-868c31fe390cfa0b95eceb74266d2770447ef8d4.zip
(MS-Windows problems): How to bind non-ASCII keys with modifiers.
-rw-r--r--etc/PROBLEMS10
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index 79f4f7356b7..28485434b6d 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -2135,6 +2135,16 @@ ought to recognize the Windows language-change event and set up the
2135appropriate keyboard encoding automatically, but it doesn't do that 2135appropriate keyboard encoding automatically, but it doesn't do that
2136yet.) 2136yet.)
2137 2137
2138To bind keys that produce non-ASCII characters with modifiers, you
2139must specify raw byte codes. For instance, if you want to bind
2140META-a-grave to a command, you need to specify this in your `~/.emacs':
2141
2142 (global-set-key [?\M-\340] ...)
2143
2144The above example is for the Latin-1 environment where the byte code
2145of the encoded a-grave is 340 octal. For other environments, use the
2146encoding appropriate to that environment.
2147
2138The %b specifier for format-time-string does not produce abbreviated 2148The %b specifier for format-time-string does not produce abbreviated
2139month names with consistent widths for some locales on some versions 2149month names with consistent widths for some locales on some versions
2140of Windows. This is caused by a deficiency in the underlying system 2150of Windows. This is caused by a deficiency in the underlying system