# HG changeset patch # User Kai Grojohann # Date 1054112189 0 # Node ID 78a8be5d896c980258619eb3eb8ea7b0e984209b # Parent 948b9733818bb4e250ac0b2e836deb3a4d62b494 (Init Rebinding): Xref Non-ASCII Rebinding, for non-English letters. Explain how to set coding systems correctly and how to include the right coding cookie in the file. diff -r 948b9733818b -r 78a8be5d896c man/ChangeLog --- a/man/ChangeLog Tue May 27 23:30:10 2003 +0000 +++ b/man/ChangeLog Wed May 28 08:56:29 2003 +0000 @@ -1,3 +1,9 @@ +2003-05-28 Kai Gro,A_(Bjohann + + * custom.texi (Init Rebinding): Xref Non-ASCII Rebinding, for + non-English letters. Explain how to set coding systems correctly + and how to include the right coding cookie in the file. + 2003-05-24 Kai Gro,A_(Bjohann * trampver.texi: Version 2.0.34 released. diff -r 948b9733818b -r 78a8be5d896c man/custom.texi --- a/man/custom.texi Tue May 27 23:30:10 2003 +0000 +++ b/man/custom.texi Wed May 28 08:56:29 2003 +0000 @@ -1712,6 +1712,42 @@ by listing each of the characters within the square brackets that delimit the vector. + Language and encoding settings can be a reason for failing key +binding. For instance, say you have put the following in your init +file: + +@example +(global-set-key [?\M-] 'shell) +@end example + +@noindent +Now it can happen that the character read from the keyboard is +actually different from the character read from your init file, even +though they look the same. In this case, Emacs will not do what you +intended. First you should check whether they are the same or +different. In the above example, you would position point (the cursor) +on the character and hit @kbd{C-u C-x =} (the @kbd{C-u} part is +important). The second line of the output will contain the charset. +Now hit the key and position point on the character thus produced. +Again, hit @kbd{C-u C-x =}. If the two charsets are different, then you +have found the problem. The solution involves putting a `coding cookie' +in your init file, @pxref{File Variables}. For example, suppose that +the character from the init file has charset latin-iso8859-1 whereas +the character from the keyboard has charset latin-iso8859-15. The +solution is to put a coding cookie into the first line of the +@file{.emacs} file, as follows: + +@example +;; -*- coding: iso8859-15; -*- +@end example + +@noindent +@xref{Non-ASCII Rebinding}, if the charset printed by @kbd{C-u C-x =} is +`eight-bit-graphic'. + + If the variable @code{keyboard-coding-system} is nil, it is probably +best to set it to the right value, according to the locale you work in. + @node Function Keys @subsection Rebinding Function Keys