diff options
| author | Eli Zaretskii | 2002-04-26 11:29:26 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-04-26 11:29:26 +0000 |
| commit | 010054643a9d77ca435f910fc049791cfa08e20c (patch) | |
| tree | 43513e19ba01a98f878522356dc9cf52d49b2705 /man/basic.texi | |
| parent | 64b9637c08b31fa309ee2cb288553901c9260b10 (diff) | |
| download | emacs-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.texi | 14 |
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 | |||
| 653 | point. The output might look like this: | 653 | point. The output might look like this: |
| 654 | 654 | ||
| 655 | @smallexample | 655 | @smallexample |
| 656 | point=26957 of 26956(100%) column 0 | 656 | point=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 |
| 660 | character, including the character set name and the codes that | 662 | character, including the character set name and the codes that |
| 661 | identify the character within that character set; ASCII characters are | 663 | identify 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 | |||
| 665 | shows the character's text properties, if any. | 667 | shows 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, |
| 668 | in a buffer whose coding system is @code{iso-2022-7bit} and whose | 670 | in a buffer whose coding system is @code{iso-2022-7bit}, whose |
| 669 | terminal coding system is @code{iso-latin-1} (so the terminal actually | 671 | terminal coding system is @code{iso-latin-1} (so the terminal actually |
| 670 | displays the character as @samp{@`A}): | 672 | displays 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) |
| 681 | terminal code: C0 | 684 | terminal code: C0 |
| 685 | |||
| 686 | Text properties | ||
| 687 | face: font-lock-variable-name-face fontified: t | ||
| 682 | @end smallexample | 688 | @end smallexample |
| 683 | 689 | ||
| 684 | @node Arguments | 690 | @node Arguments |