diff options
| author | Richard M. Stallman | 2001-12-28 03:10:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-28 03:10:33 +0000 |
| commit | 6480c8b4e2074c6c25e66eb046193f12103ad40b (patch) | |
| tree | 1b93c5e94d3d7bf35e0665318a33d8de07ca990f /man/basic.texi | |
| parent | a228c48e1aca2a910c6ba35e03a3c12097b00cee (diff) | |
| download | emacs-6480c8b4e2074c6c25e66eb046193f12103ad40b.tar.gz emacs-6480c8b4e2074c6c25e66eb046193f12103ad40b.zip | |
Update C-u C-x = output format.
Diffstat (limited to 'man/basic.texi')
| -rw-r--r-- | man/basic.texi | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/man/basic.texi b/man/basic.texi index 0589c3458a2..8ebda03afe4 100644 --- a/man/basic.texi +++ b/man/basic.texi | |||
| @@ -654,19 +654,29 @@ point. The output might look like this: | |||
| 654 | point=26957 of 26956(100%) column 0 | 654 | point=26957 of 26956(100%) column 0 |
| 655 | @end smallexample | 655 | @end smallexample |
| 656 | 656 | ||
| 657 | @w{@kbd{C-u C-x =}} displays additional information about a character, | 657 | @w{@kbd{C-u C-x =}} displays additional information about a |
| 658 | in place of the buffer coordinates and column: the character set name | 658 | character, including the character set name and the codes that |
| 659 | and the codes that identify the character within that character set; | 659 | identify the character within that character set; ASCII characters are |
| 660 | ASCII characters are identified as belonging to the @code{ASCII} | 660 | identified as belonging to the @code{ASCII} character set. It also |
| 661 | character set. In addition, the full character encoding, even if it | 661 | shows the character's syntax, categories, and encodings both |
| 662 | takes more than a single byte, is shown after @samp{ext}. Here's an | 662 | internally in the buffer and externally if you save the file. It also |
| 663 | example for a Latin-1 character A with a grave accent in a buffer whose | 663 | shows the character's text properties, if any. |
| 664 | coding system is iso-2022-7bit@footnote{On terminals that support | 664 | |
| 665 | Latin-1 characters, the character shown after @samp{Char:} is displayed | 665 | Here's an example showing the Latin-1 character A with grave accent, |
| 666 | as the actual glyph of A with grave accent.}: | 666 | in a buffer whose coding system is @code{iso-2022-7bit} and whose |
| 667 | terminal coding system is @code{iso-latin-1} (so the terminal actually | ||
| 668 | displays the character as @samp{@`A}): | ||
| 667 | 669 | ||
| 668 | @smallexample | 670 | @smallexample |
| 669 | Char: @`A (04300, 2240, 0x8c0, ext ESC , A @@) (latin-iso8859-1 64) | 671 | character: @`A (04300, 2240, 0x8c0) |
| 672 | charset: latin-iso8859-1 | ||
| 673 | (Right-Hand Part of Latin Alphabet 1@dots{} | ||
| 674 | code point: 64 | ||
| 675 | syntax: w which means: word | ||
| 676 | category: l:Latin | ||
| 677 | buffer code: 0x81 0xC0 | ||
| 678 | file code: ESC 2C 41 40 (encoded by coding system iso-2022-7bit) | ||
| 679 | terminal code: C0 | ||
| 670 | @end smallexample | 680 | @end smallexample |
| 671 | 681 | ||
| 672 | @node Arguments | 682 | @node Arguments |