aboutsummaryrefslogtreecommitdiffstats
path: root/man/basic.texi
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-28 03:10:33 +0000
committerRichard M. Stallman2001-12-28 03:10:33 +0000
commit6480c8b4e2074c6c25e66eb046193f12103ad40b (patch)
tree1b93c5e94d3d7bf35e0665318a33d8de07ca990f /man/basic.texi
parenta228c48e1aca2a910c6ba35e03a3c12097b00cee (diff)
downloademacs-6480c8b4e2074c6c25e66eb046193f12103ad40b.tar.gz
emacs-6480c8b4e2074c6c25e66eb046193f12103ad40b.zip
Update C-u C-x = output format.
Diffstat (limited to 'man/basic.texi')
-rw-r--r--man/basic.texi32
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:
654point=26957 of 26956(100%) column 0 654point=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
658in place of the buffer coordinates and column: the character set name 658character, including the character set name and the codes that
659and the codes that identify the character within that character set; 659identify the character within that character set; ASCII characters are
660ASCII characters are identified as belonging to the @code{ASCII} 660identified as belonging to the @code{ASCII} character set. It also
661character set. In addition, the full character encoding, even if it 661shows the character's syntax, categories, and encodings both
662takes more than a single byte, is shown after @samp{ext}. Here's an 662internally in the buffer and externally if you save the file. It also
663example for a Latin-1 character A with a grave accent in a buffer whose 663shows the character's text properties, if any.
664coding system is iso-2022-7bit@footnote{On terminals that support 664
665Latin-1 characters, the character shown after @samp{Char:} is displayed 665 Here's an example showing the Latin-1 character A with grave accent,
666as the actual glyph of A with grave accent.}: 666in a buffer whose coding system is @code{iso-2022-7bit} and whose
667terminal coding system is @code{iso-latin-1} (so the terminal actually
668displays the character as @samp{@`A}):
667 669
668@smallexample 670@smallexample
669Char: @`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)
679terminal code: C0
670@end smallexample 680@end smallexample
671 681
672@node Arguments 682@node Arguments