diff options
author | Dave Love <fx@gnu.org> | 2000-11-22 13:55:24 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-22 13:55:24 +0000 |
commit | 7c9960d7b8cab52f6abeb41cf25f56098bb2e2b7 (patch) | |
tree | 661c431d3c61e769466973d7acba1edd3ee796b7 /man | |
parent | e08b2069c79b3a3e15bf073eac041539860abfbc (diff) | |
download | emacs-7c9960d7b8cab52f6abeb41cf25f56098bb2e2b7.tar.gz |
Tweak non-ASCII display.
Diffstat (limited to 'man')
-rw-r--r-- | man/display.texi | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/man/display.texi b/man/display.texi index 3df3eaae7ec..65d4d2e8e2b 100644 --- a/man/display.texi +++ b/man/display.texi @@ -324,12 +324,15 @@ tab stop column (normally every 8 columns). (@samp{^}) followed by the non-control version of the character; thus, control-A is displayed as @samp{^A}. - Non-ASCII characters 0200 through 0377 are displayed with octal escape -sequences; thus, character code 0243 (octal) is displayed as -@samp{\243}. However, if you enable European display, most of these -characters become non-ASCII printing characters, and are displayed using -their graphics (assuming your terminal supports them). -@xref{Single-Byte Character Support}. + Non-ASCII characters 0200 through 0237 (octal) are displayed with +octal escape sequences; thus, character code 0230 (octal) is displayed +as @samp{\230}. The display of character codes 0240 through 0377 +(octal) may be either as escape sequences or as graphics. They do not +normally occur in multibyte buffers but if they do, they are displayed +as Latin-1 graphics. In unibyte mode, if you enable European display +they are displayed using their graphics (assuming your terminal supports +them), otherwise as escape sequences. @xref{Single-Byte Character +Support}. @node Display Vars @section Variables Controlling Display |