aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorRichard M. Stallman2001-02-17 18:12:07 +0000
committerRichard M. Stallman2001-02-17 18:12:07 +0000
commit4b40407a71a50475eb20f1d3b9d92462bffae80c (patch)
tree1e2c092b7cf202ec09e14d8833085eb4131f30c9 /man
parent8e375db276c58f0d54d169bcb8b78911bf31e2fd (diff)
downloademacs-4b40407a71a50475eb20f1d3b9d92462bffae80c.tar.gz
emacs-4b40407a71a50475eb20f1d3b9d92462bffae80c.zip
Clarify undisplayable characters, --unibyte, locales.
Clarify self-insertion of non-ASCII 8-bit chars. Clarify coding system detection of escape sequences. Clarify keyboard input methods and coding systems. Comment out the commands to inquire about character sets. Misc cleanups.
Diffstat (limited to 'man')
-rw-r--r--man/mule.texi316
1 files changed, 163 insertions, 153 deletions
diff --git a/man/mule.texi b/man/mule.texi
index d127563efa6..940f0354d9e 100644
--- a/man/mule.texi
+++ b/man/mule.texi
@@ -42,7 +42,7 @@ have been merged from the modified version of Emacs known as MULE (for
42``MULti-lingual Enhancement to GNU Emacs'') 42``MULti-lingual Enhancement to GNU Emacs'')
43 43
44 Emacs also supports various encodings of these characters used by 44 Emacs also supports various encodings of these characters used by
45internationalized software, such as word processors, mailers, etc. 45other internationalized software, such as word processors and mailers.
46 46
47@menu 47@menu
48* International Intro:: Basic concepts of multibyte characters. 48* International Intro:: Basic concepts of multibyte characters.
@@ -80,16 +80,31 @@ cases) in the @kbd{C-q} command (@pxref{Multibyte Conversion}).
80@kindex C-h h 80@kindex C-h h
81@findex view-hello-file 81@findex view-hello-file
82@cindex undisplayable characters 82@cindex undisplayable characters
83@cindex ? 83@cindex @samp{?} in display
84@cindex ??
85 The command @kbd{C-h h} (@code{view-hello-file}) displays the file 84 The command @kbd{C-h h} (@code{view-hello-file}) displays the file
86@file{etc/HELLO}, which shows how to say ``hello'' in many languages. 85@file{etc/HELLO}, which shows how to say ``hello'' in many languages.
87This illustrates various scripts. If the font you're using doesn't have 86This illustrates various scripts. If some characters can't be
88characters for all those different languages, you will see some hollow 87displayed on your terminal, they appear as @samp{?} or as hollow boxes
89boxes instead of characters; see @ref{Fontsets}. On non-windowing 88(@pxref{Undisplayable Characters}).
90displays, @samp{?} is displayed in place of the hollow box. More than 89
91one @samp{?} is displayed for undisplayable characters that are wider 90 Keyboards, even in the countries where these character sets are used,
92than one column. 91generally don't have keys for all the characters in them. So Emacs
92supports various @dfn{input methods}, typically one for each script or
93language, to make it convenient to type them.
94
95@kindex C-x RET
96 The prefix key @kbd{C-x @key{RET}} is used for commands that pertain
97to multibyte characters, coding systems, and input methods.
98
99@ignore
100@c This is commented out because it doesn't fit here, or anywhere.
101@c This manual does not discuss "character sets" as they
102@c are used in Mule, and it makes no sense to mention these commands
103@c except as part of a larger discussion of the topic.
104@c But it is not clear that topic is worth mentioning here,
105@c since that is more of an implementation concept
106@c than a user-level concept. And when we switch to Unicode,
107@c character sets in the current sense may not even exist.
93 108
94@findex list-charset-chars 109@findex list-charset-chars
95@cindex characters in a certain charset 110@cindex characters in a certain charset
@@ -101,15 +116,7 @@ character set, and displays all the characters in that character set.
101 The command @kbd{M-x describe-character-set} prompts for a character 116 The command @kbd{M-x describe-character-set} prompts for a character
102set name and displays information about that character set, including 117set name and displays information about that character set, including
103its internal representation within Emacs. 118its internal representation within Emacs.
104 119@end ignore
105 Keyboards, even in the countries where these character sets are used,
106generally don't have keys for all the characters in them. So Emacs
107supports various @dfn{input methods}, typically one for each script or
108language, to make it convenient to type them.
109
110@kindex C-x RET
111 The prefix key @kbd{C-x @key{RET}} is used for commands that pertain
112to multibyte characters, coding systems, and input methods.
113 120
114@node Enabling Multibyte 121@node Enabling Multibyte
115@section Enabling Multibyte Characters 122@section Enabling Multibyte Characters
@@ -153,16 +160,22 @@ have basically the same effect as @samp{--unibyte}.
153@cindex unibyte operation, and Lisp files 160@cindex unibyte operation, and Lisp files
154@cindex init file, and non-ASCII characters 161@cindex init file, and non-ASCII characters
155@cindex environment variables, and non-ASCII characters 162@cindex environment variables, and non-ASCII characters
156 Multibyte strings are not created during initialization from the 163 With @samp{--unibyte}, multibyte strings are not created during
157values of environment variables, @file{/etc/passwd} entries etc.@: that 164initialization from the values of environment variables,
158contain non-ASCII 8-bit characters. However, Lisp files, when they are 165@file{/etc/passwd} entries etc.@: that contain non-ASCII 8-bit
159loaded for running, and in particular the initialization file 166characters.
160@file{.emacs}, are normally read as multibyte---even with 167
161@samp{--unibyte}. To avoid multibyte strings being generated by 168 Emacs normally loads Lisp files as multibyte, regardless of whether
162non-ASCII characters in Lisp files, put @samp{-*-unibyte: t;-*-} in a 169you used @samp{--unibyte}. This includes the Emacs initialization
163comment on the first line, or specify the coding system @samp{raw-text} 170file, @file{.emacs}, and the initialization files of Emacs packages
164with @kbd{C-x @key{RET} c}. Do the same for initialization files for 171such as Gnus. However, you can specify unibyte loading for a
165packages like Gnus. 172particular Lisp file, by putting @samp{-*-unibyte: t;-*-} in a comment
173on the first line. Then that file is always loaded as unibyte text,
174even if you did not start Emacs with @samp{--unibyte}. The motivation
175for these conventions is that it is more reliable to always load any
176particular Lisp file in the same way. However, you can load a Lisp
177file as unibyte, on any one occasion, by typing @kbd{C-x @key{RET} c
178raw-text @key{RET}} immediately before loading it.
166 179
167 The mode line indicates whether multibyte character support is enabled 180 The mode line indicates whether multibyte character support is enabled
168in the current buffer. If it is, there are two or more characters (most 181in the current buffer. If it is, there are two or more characters (most
@@ -206,13 +219,12 @@ sign), Polish, Romanian, Slovak, Slovenian, Thai, Tibetan, Turkish,
206Dutch, Spanish, and Vietnamese. 219Dutch, Spanish, and Vietnamese.
207@end quotation 220@end quotation
208 221
209@cindex fonts, for displaying different languages 222@cindex fonts for various scripts
210 To be able to display the script(s) used by your language environment 223 To display the script(s) used by your language environment on a
211on a windowed display, you need to have a suitable font installed. If 224graphical display, you need to have a suitable font. If some of the
212some of the characters appear as empty boxes, download and install the 225characters appear as empty boxes, you should install the GNU Intlfonts
213GNU Intlfonts distribution, which includes fonts for all supported 226package, which includes fonts for all supported scripts.
214scripts. @xref{Fontsets}, for more details about setting up your 227@xref{Fontsets}, for more details about setting up your fonts.
215fonts.
216 228
217@findex set-locale-environment 229@findex set-locale-environment
218@vindex locale-language-names 230@vindex locale-language-names
@@ -220,31 +232,21 @@ fonts.
220@cindex locales 232@cindex locales
221 Some operating systems let you specify the language you are using by 233 Some operating systems let you specify the language you are using by
222setting the locale environment variables @env{LC_ALL}, @env{LC_CTYPE}, 234setting the locale environment variables @env{LC_ALL}, @env{LC_CTYPE},
223and @env{LANG}; the first of these which is nonempty specifies your 235or @env{LANG}.@footnote{If more than one of these is set, the first
224locale. Emacs handles this during startup by invoking the 236one that is nonempty specifies your locale for this purpose.} Emacs
225@code{set-locale-environment} function, which matches your locale 237handles this during startup by matching your locale against entries in
226against entries in the value of the variable 238the value of the variables @code{locale-charset-language-names} and
227@code{locale-language-names} and selects the corresponding language 239@code{locale-language-names} and selects the corresponding language
228environment if a match is found. But if your locale also matches an 240environment if a match is found. (The former variable overrides the
229entry in the variable @code{locale-charset-language-names}, this entry 241latter.) It also adjusts the display table and terminal coding
230is preferred if its character set disagrees. For example, suppose the 242system, the locale coding system, and the preferred coding system as
231locale @samp{en_GB.ISO8859-15} matches @code{"Latin-1"} in 243needed for the locale.
232@code{locale-language-names} and @code{"Latin-9"} in 244
233@code{locale-charset-language-names}; since these two language 245 If you modify the @env{LC_ALL}, @env{LC_CTYPE}, or @env{LANG}
234environments' character sets disagree, Emacs uses @code{"Latin-9"}. 246environment variables while running Emacs, you may want to invoke the
235 247@code{set-locale-environment} function afterwards to readjust the
236 If all goes well, the @code{set-locale-environment} function selects 248language environment from the new locale.
237the language environment, since language is part of locale. It also
238adjusts the display table and terminal coding system, the locale coding
239system, and the preferred coding system as needed for the locale.
240
241 Since the @code{set-locale-environment} function is automatically
242invoked during startup, you normally do not need to invoke it yourself.
243However, if you modify the @env{LC_ALL}, @env{LC_CTYPE}, or @env{LANG}
244environment variables, you may want to invoke the
245@code{set-locale-environment} function afterwards.
246 249
247@findex set-locale-environment
248@vindex locale-preferred-coding-systems 250@vindex locale-preferred-coding-systems
249 The @code{set-locale-environment} function normally uses the preferred 251 The @code{set-locale-environment} function normally uses the preferred
250coding system established by the language environment to decode system 252coding system established by the language environment to decode system
@@ -255,10 +257,10 @@ matches @code{japanese-shift-jis} in
255@code{locale-preferred-coding-systems}, Emacs uses that encoding even 257@code{locale-preferred-coding-systems}, Emacs uses that encoding even
256though it might normally use @code{japanese-iso-8bit}. 258though it might normally use @code{japanese-iso-8bit}.
257 259
258 The environment chosen from the locale when Emacs starts is 260 You can override the language environment chosen at startup with
259overidden by any explicit use of the command 261explicit use of the command @code{set-language-environment}, or with
260@code{set-language-environment} or customization of 262customization of @code{current-language-environment} in your init
261@code{current-language-environment} in your init file. 263file.
262 264
263@kindex C-h L 265@kindex C-h L
264@findex describe-language-environment 266@findex describe-language-environment
@@ -369,8 +371,10 @@ characters to type next is displayed in the echo area (but not when you
369are in the minibuffer). 371are in the minibuffer).
370 372
371@cindex Leim package 373@cindex Leim package
372Input methods are implemented in the separate Leim package, which must 374 Input methods are implemented in the separate Leim package: they are
373be installed with Emacs. 375available only if the system administrator used Leim when building
376Emacs. If Emacs was built without Leim, you will find that no input
377methods are defined.
374 378
375@node Select Input Method 379@node Select Input Method
376@section Selecting an Input Method 380@section Selecting an Input Method
@@ -443,11 +447,12 @@ method, including the string that stands for it in the mode line.
443through 0377 (octal) are not really legitimate in the buffer. The valid 447through 0377 (octal) are not really legitimate in the buffer. The valid
444non-ASCII printing characters have codes that start from 0400. 448non-ASCII printing characters have codes that start from 0400.
445 449
446 If you type a self-inserting character in the range 0240 450 If you type a self-inserting character in the range 0240 through
447through 0377, Emacs assumes you intended to use one of the ISO 4510377, or if you use @kbd{C-q} to insert one, Emacs assumes you
448Latin-@var{n} character sets, and converts it to the Emacs code 452intended to use one of the ISO Latin-@var{n} character sets, and
449representing that Latin-@var{n} character. You select @emph{which} ISO 453converts it to the Emacs code representing that Latin-@var{n}
450Latin character set to use through your choice of language environment 454character. You select @emph{which} ISO Latin character set to use
455through your choice of language environment
451@iftex 456@iftex
452(see above). 457(see above).
453@end iftex 458@end iftex
@@ -456,13 +461,12 @@ Latin character set to use through your choice of language environment
456@end ifinfo 461@end ifinfo
457If you do not specify a choice, the default is Latin-1. 462If you do not specify a choice, the default is Latin-1.
458 463
459 The same thing happens when you use @kbd{C-q} to enter an octal code 464 If you insert a character in the range 0200 through 0237, which
460in this range. If you enter a code in the range 0200 through 0237, 465forms the @code{eight-bit-control} character set, it is inserted
461which forms the @code{eight-bit-control} character set, it is inserted
462literally. You should normally avoid doing this since buffers 466literally. You should normally avoid doing this since buffers
463containing such characters have to be written out in either the 467containing such characters have to be written out in either the
464@code{emacs-mule} or @code{raw-text} coding system, which is usually not 468@code{emacs-mule} or @code{raw-text} coding system, which is usually
465what you want. 469not what you want.
466 470
467@node Coding Systems 471@node Coding Systems
468@section Coding Systems 472@section Coding Systems
@@ -652,24 +656,24 @@ to non-@code{nil}.
652@cindex escape sequences in files 656@cindex escape sequences in files
653 By default, the automatic detection of coding system is sensitive to 657 By default, the automatic detection of coding system is sensitive to
654escape sequences. If Emacs sees a sequence of characters that begin 658escape sequences. If Emacs sees a sequence of characters that begin
655with an @key{ESC} character, and the sequence is valid as an ISO-2022 659with an escape character, and the sequence is valid as an ISO-2022
656code, the code is determined as one of ISO-2022 encoding, and the file 660code, that tells Emacs to use one of the ISO-2022 encodings to decode
657is decoded by the corresponding coding system 661the file.
658(e.g. @code{iso-2022-7bit}).
659 662
660 However, there may be cases that you want to read escape sequences in 663 However, there may be cases that you want to read escape sequences
661a file as is. In such a case, you can set th variable 664in a file as is. In such a case, you can set the variable
662@code{inhibit-iso-escape-detection} to non-@code{nil}. Then the code 665@code{inhibit-iso-escape-detection} to non-@code{nil}. Then the code
663detection will ignore any escape sequences, and so no file is detected 666detection ignores any escape sequences, and never uses an ISO-2022
664as being encoded in some of ISO-2022 encoding. The result is that all 667encoding. The result is that all escape sequences become visible in
665escape sequences become visible in a buffer. 668the buffer.
666 669
667 The default value of @code{inhibit-iso-escape-detection} is 670 The default value of @code{inhibit-iso-escape-detection} is
668@code{nil}, and it is strongly recommended not to change it. That's 671@code{nil}. We recommend that you not change it permanently, only for
669because many Emacs Lisp source files that contain non-ASCII characters 672one specific operation. That's because many Emacs Lisp source files
670are encoded in the coding system @code{iso-2022-7bit} in the Emacs 673that contain non-ASCII characters are encoded in the coding system
671distribution, and they won't be decoded correctly when you visit those 674@code{iso-2022-7bit} in the Emacs distribution, and they won't be
672files if you suppress the escape sequence detection. 675decoded correctly when you visit those files if you suppress the
676escape sequence detection.
673 677
674@vindex coding 678@vindex coding
675 You can specify the coding system for a particular file using the 679 You can specify the coding system for a particular file using the
@@ -700,33 +704,34 @@ a different coding system, you can specify a different coding system for
700the buffer using @code{set-buffer-file-coding-system} (@pxref{Specify 704the buffer using @code{set-buffer-file-coding-system} (@pxref{Specify
701Coding}). 705Coding}).
702 706
703 While editing a file, you will sometimes insert characters which 707 You can insert any possible character into any Emacs buffer, but
704cannot be encoded with the coding system stored in 708most coding systems can only handle some of the possible characters.
705@code{buffer-file-coding-system}. For example, suppose you start with 709This means that you can insert characters that cannot be encoded with
706an ASCII file and insert a few Latin-1 characters into it. Or you could 710the coding system that will be used to save the buffer. For example,
707edit a text file in Polish encoded in @code{iso-8859-2} and add to it 711you could start with an ASCII file and insert a few Latin-1 characters
708translations of several Polish words into Russian. When you save the 712into it, or or you could edit a text file in Polish encoded in
709buffer, Emacs can no longer use the previous value of the buffer's 713@code{iso-8859-2} and add to it translations of several Polish words
710coding system, because the characters you added cannot be encoded by 714into Russian. When you save the buffer, Emacs cannot use the current
711that coding system. 715value of @code{buffer-file-coding-system}, because the characters you
716added cannot be encoded by that coding system.
712 717
713 When that happens, Emacs tries the most-preferred coding system (set 718 When that happens, Emacs tries the most-preferred coding system (set
714by @kbd{M-x prefer-coding-system} or @kbd{M-x 719by @kbd{M-x prefer-coding-system} or @kbd{M-x
715set-language-environment}), and if that coding system can safely encode 720set-language-environment}), and if that coding system can safely
716all of the characters in the buffer, Emacs uses it, and stores its value 721encode all of the characters in the buffer, Emacs uses it, and stores
717in @code{buffer-file-coding-system}. Otherwise, Emacs pops up a window 722its value in @code{buffer-file-coding-system}. Otherwise, Emacs
718with a list of coding systems suitable for encoding the buffer, and 723displays a list of coding systems suitable for encoding the buffer's
719prompts you to choose one of those coding systems. 724contents, and asks to choose one of those coding systems.
720 725
721 If you insert characters which cannot be encoded by the buffer's 726 If you insert the unsuitable characters in a mail message, Emacs
722coding system while editing a mail message, Emacs behaves a bit 727behaves a bit differently. It additionally checks whether the
723differently. It additionally checks whether the most-preferred coding 728most-preferred coding system is recommended for use in MIME messages;
724system is recommended for use in MIME messages; if it isn't, Emacs tells 729if it isn't, Emacs tells you that the most-preferred coding system is
725you that the most-preferred coding system is not recommended and prompts 730not recommended and prompts you for another coding system. This is so
726you for another coding system. This is so you won't inadvertently send 731you won't inadvertently send a message encoded in a way that your
727a message encoded in a way that your recipient's mail software will have 732recipient's mail software will have difficulty decoding. (If you do
728difficulty decoding. (If you do want to use the most-preferred coding 733want to use the most-preferred coding system, you can type its name to
729system, you can type its name to Emacs prompt anyway.) 734Emacs prompt anyway.)
730 735
731@vindex sendmail-coding-system 736@vindex sendmail-coding-system
732 When you send a message with Mail mode (@pxref{Sending Mail}), Emacs has 737 When you send a message with Mail mode (@pxref{Sending Mail}), Emacs has
@@ -916,13 +921,14 @@ name, or it may get an error. If such a problem happens, use @kbd{C-x
916C-w} to specify a new file name for that buffer. 921C-w} to specify a new file name for that buffer.
917 922
918@vindex locale-coding-system 923@vindex locale-coding-system
919 The variable @code{locale-coding-system} specifies a coding system to 924 The variable @code{locale-coding-system} specifies a coding system
920use when encoding and decoding system strings such as system error 925to use when encoding and decoding system strings such as system error
921messages and @code{format-time-string} formats and time stamps. This 926messages and @code{format-time-string} formats and time stamps. You
922coding system should be compatible with the underlying system's coding 927should choose a coding system that is compatible with the underlying
923system, which is normally specified by the first environment variable in 928system's text representation, which is normally specified by one of
924the list @env{LC_ALL}, @env{LC_CTYPE}, @env{LANG} whose value is 929the environment variables @env{LC_ALL}, @env{LC_CTYPE}, and
925nonempty. 930@env{LANG}. (The first one whose value is nonempty is the one that
931determines the text representation.)
926 932
927@node Fontsets 933@node Fontsets
928@section Fontsets 934@section Fontsets
@@ -941,7 +947,7 @@ specifying its name, anywhere that you could use a single font. Of
941course, Emacs fontsets can use only the fonts that the X server 947course, Emacs fontsets can use only the fonts that the X server
942supports; if certain characters appear on the screen as hollow boxes, 948supports; if certain characters appear on the screen as hollow boxes,
943this means that the fontset in use for them has no font for those 949this means that the fontset in use for them has no font for those
944characters.@footnote{The installation instructions have information on 950characters.@footnote{The Emacs installation instructions have information on
945additional font support.} 951additional font support.}
946 952
947 Emacs creates two fontsets automatically: the @dfn{standard fontset} 953 Emacs creates two fontsets automatically: the @dfn{standard fontset}
@@ -1099,23 +1105,27 @@ call this function explicitly to create a fontset.
1099@node Undisplayable Characters 1105@node Undisplayable Characters
1100@section Undisplayable Characters 1106@section Undisplayable Characters
1101 1107
1102Your terminal may not be able to display some non-@sc{ascii} characters. 1108 Your terminal may be unable to display some non-@sc{ascii}
1103Most non-windowing terminals can only use a single character set, 1109characters. Most non-windowing terminals can only use a single
1104specified by the variable @code{default-terminal-coding-system} 1110character set (use the variable @code{default-terminal-coding-system}
1105(@pxref{Specify Coding}) and characters which can't be encoded in it are 1111(@pxref{Specify Coding}) to tell Emacs which one); characters which
1106displayed as @samp{?} by default. Windowing terminals may not have the 1112can't be encoded in that coding system are displayed as @samp{?} by
1107necessary font available to display a given character and display a 1113default.
1108hollow box instead. You can change the default behavior. 1114
1115 Windowing terminals can display a broader range of characters, but
1116you may not have fonts installed for all of them; characters that have
1117no font appear as a hollow box.
1109 1118
1110If you use Latin-1 characters but your terminal can't display Latin-1, 1119 If you use Latin-1 characters but your terminal can't display
1111you can arrange to display mnemonic @sc{ascii} sequences instead, e.g.@: 1120Latin-1, you can arrange to display mnemonic @sc{ascii} sequences
1112@samp{"o} for o-umlaut. Load the library @file{iso-ascii} to do this. 1121instead, e.g.@: @samp{"o} for o-umlaut. Load the library
1122@file{iso-ascii} to do this.
1113 1123
1114If your terminal can display Latin-1, you can display characters from 1124 If your terminal can display Latin-1, you can display characters
1115other European character sets using a mixture of equivalent Latin-1 1125from other European character sets using a mixture of equivalent
1116characters and @sc{ascii} mnemonics. Use the Custom option 1126Latin-1 characters and @sc{ascii} mnemonics. Use the Custom option
1117@code{latin1-display} to enable this. The mnemonic @sc{ascii} sequences 1127@code{latin1-display} to enable this. The mnemonic @sc{ascii}
1118mostly correspond to those of the prefix input methods. 1128sequences mostly correspond to those of the prefix input methods.
1119 1129
1120@node Single-Byte Character Support 1130@node Single-Byte Character Support
1121@section Single-byte Character Set Support 1131@section Single-byte Character Set Support
@@ -1172,18 +1182,18 @@ characters:
1172@findex set-keyboard-coding-system 1182@findex set-keyboard-coding-system
1173@vindex keyboard-coding-system 1183@vindex keyboard-coding-system
1174If your keyboard can generate character codes 128 and up, representing 1184If your keyboard can generate character codes 128 and up, representing
1175non-ASCII characters, use the command @code{M-x 1185non-ASCII you can type those character codes directly.
1176set-keyboard-coding-system} or the Custom option 1186
1177@code{keyboard-coding-system} to specify this in the same way as for 1187On a windowing terminal, you should not need to do anything special to
1178multibyte usage (@pxref{Specify Coding}). 1188use these keys; they should simply work. On a text-only terminal, you
1179 1189should use the command @code{M-x set-keyboard-coding-system} or the
1180It is not necessary to do this under a window system which can 1190Custom option @code{keyboard-coding-system} to specify which coding
1181distinguish 8-bit characters and Meta keys. If you do this on a normal 1191system your keyboard uses (@pxref{Specify Coding}). Enabling this
1182terminal, you will probably need to use @kbd{ESC} to type Meta 1192feature will probably require you to use @kbd{ESC} to type Meta
1183characters.@footnote{In some cases, such as the Linux console and 1193characters; however, on a Linux console or in @code{xterm}, you can
1184@code{xterm}, you can arrange for Meta to be converted to @kbd{ESC} and 1194arrange for Meta to be converted to @kbd{ESC} and still be able type
1185still be able type 8-bit characters present directly on the keyboard or 11958-bit characters present directly on the keyboard or using
1186using @kbd{Compose} or @kbd{AltGr} keys.} @xref{User Input}. 1196@kbd{Compose} or @kbd{AltGr} keys. @xref{User Input}.
1187 1197
1188@item 1198@item
1189You can use an input method for the selected language environment. 1199You can use an input method for the selected language environment.
@@ -1205,7 +1215,7 @@ and in any other context where a key sequence is allowed.
1205library is loaded, the @key{ALT} modifier key, if you have one, serves 1215library is loaded, the @key{ALT} modifier key, if you have one, serves
1206the same purpose as @kbd{C-x 8}; use @key{ALT} together with an accent 1216the same purpose as @kbd{C-x 8}; use @key{ALT} together with an accent
1207character to modify the following letter. In addition, if you have keys 1217character to modify the following letter. In addition, if you have keys
1208for the Latin-1 ``dead accent characters'', they too are defined to 1218for the Latin-1 ``dead accent characters,'' they too are defined to
1209compose with the following character, once @code{iso-transl} is loaded. 1219compose with the following character, once @code{iso-transl} is loaded.
1210Use @kbd{C-x 8 C-h} to list the available translations as mnemonic 1220Use @kbd{C-x 8 C-h} to list the available translations as mnemonic
1211command names. 1221command names.
@@ -1215,9 +1225,9 @@ command names.
1215@cindex ISO Accents mode 1225@cindex ISO Accents mode
1216@findex iso-accents-mode 1226@findex iso-accents-mode
1217@cindex Latin-1, Latin-2 and Latin-3 input mode 1227@cindex Latin-1, Latin-2 and Latin-3 input mode
1218For Latin-1, Latin-2 and Latin-3, @kbd{M-x iso-accents-mode} installs a 1228For Latin-1, Latin-2 and Latin-3, @kbd{M-x iso-accents-mode} installs
1219minor mode which provides a facility like the @code{latin-1-prefix} 1229a minor mode which works much like the @code{latin-1-prefix} input
1220input method but independent of the Leim package. This mode is 1230method does not depend on having the input methods installed. This
1221buffer-local. It can be customized for various languages with @kbd{M-x 1231mode is buffer-local. It can be customized for various languages with
1222iso-accents-customize}. 1232@kbd{M-x iso-accents-customize}.
1223@end itemize 1233@end itemize