aboutsummaryrefslogtreecommitdiffstats
path: root/man/basic.texi
diff options
context:
space:
mode:
authorEli Zaretskii2002-04-26 11:29:26 +0000
committerEli Zaretskii2002-04-26 11:29:26 +0000
commit010054643a9d77ca435f910fc049791cfa08e20c (patch)
tree43513e19ba01a98f878522356dc9cf52d49b2705 /man/basic.texi
parent64b9637c08b31fa309ee2cb288553901c9260b10 (diff)
downloademacs-010054643a9d77ca435f910fc049791cfa08e20c.tar.gz
emacs-010054643a9d77ca435f910fc049791cfa08e20c.zip
(Position Info): Add text properties to the example. Add index entries.
Diffstat (limited to 'man/basic.texi')
-rw-r--r--man/basic.texi14
1 files changed, 10 insertions, 4 deletions
diff --git a/man/basic.texi b/man/basic.texi
index 95332c42537..a72604b0d4a 100644
--- a/man/basic.texi
+++ b/man/basic.texi
@@ -653,9 +653,11 @@ part), the @w{@kbd{C-x =}} output does not describe a character after
653point. The output might look like this: 653point. The output might look like this:
654 654
655@smallexample 655@smallexample
656point=26957 of 26956(100%) column 0 656point=26957 of 26956(100%) column 0
657@end smallexample 657@end smallexample
658 658
659@cindex character set of character at point
660@cindex text properties at point
659 @w{@kbd{C-u C-x =}} displays additional information about a 661 @w{@kbd{C-u C-x =}} displays additional information about a
660character, including the character set name and the codes that 662character, including the character set name and the codes that
661identify the character within that character set; ASCII characters are 663identify the character within that character set; ASCII characters are
@@ -665,9 +667,10 @@ internally in the buffer and externally if you save the file. It also
665shows the character's text properties, if any. 667shows the character's text properties, if any.
666 668
667 Here's an example showing the Latin-1 character A with grave accent, 669 Here's an example showing the Latin-1 character A with grave accent,
668in a buffer whose coding system is @code{iso-2022-7bit} and whose 670in a buffer whose coding system is @code{iso-2022-7bit}, whose
669terminal coding system is @code{iso-latin-1} (so the terminal actually 671terminal coding system is @code{iso-latin-1} (so the terminal actually
670displays the character as @samp{@`A}): 672displays the character as @samp{@`A}), and which has font-lock-mode
673(@pxref{Font Lock}) enabled:
671 674
672@smallexample 675@smallexample
673 character: @`A (04300, 2240, 0x8c0) 676 character: @`A (04300, 2240, 0x8c0)
@@ -675,10 +678,13 @@ displays the character as @samp{@`A}):
675 (Right-Hand Part of Latin Alphabet 1@dots{} 678 (Right-Hand Part of Latin Alphabet 1@dots{}
676 code point: 64 679 code point: 64
677 syntax: w which means: word 680 syntax: w which means: word
678 category: l:Latin 681 category: l:Latin
679 buffer code: 0x81 0xC0 682 buffer code: 0x81 0xC0
680 file code: ESC 2C 41 40 (encoded by coding system iso-2022-7bit) 683 file code: ESC 2C 41 40 (encoded by coding system iso-2022-7bit)
681terminal code: C0 684terminal code: C0
685
686Text properties
687 face: font-lock-variable-name-face fontified: t
682@end smallexample 688@end smallexample
683 689
684@node Arguments 690@node Arguments