diff options
Diffstat (limited to 'doc/lispref/strings.texi')
| -rw-r--r-- | doc/lispref/strings.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 09f5bdc803b..aed371f5704 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -1593,7 +1593,7 @@ be made. | |||
| 1593 | 1593 | ||
| 1594 | Other characters can also have special case-conversion rules. They | 1594 | Other characters can also have special case-conversion rules. They |
| 1595 | all have non-@code{nil} character properties @code{special-uppercase}, | 1595 | all have non-@code{nil} character properties @code{special-uppercase}, |
| 1596 | @code{special-lowercase} or @code{special-titlecase} (@pxref{Character | 1596 | @code{special-lowercase}, or @code{special-titlecase} (@pxref{Character |
| 1597 | Properties}) defined by the Unicode Standard. These properties define | 1597 | Properties}) defined by the Unicode Standard. These properties define |
| 1598 | special case-conversion rules which override the current case table | 1598 | special case-conversion rules which override the current case table |
| 1599 | (@pxref{Case Tables}). | 1599 | (@pxref{Case Tables}). |
| @@ -1640,11 +1640,11 @@ maps for both lower case and upper case. | |||
| 1640 | Some characters have special case-conversion rules defined for them, | 1640 | Some characters have special case-conversion rules defined for them, |
| 1641 | which by default override the current case table. These characters have | 1641 | which by default override the current case table. These characters have |
| 1642 | non-@code{nil} character properties @code{special-uppercase}, | 1642 | non-@code{nil} character properties @code{special-uppercase}, |
| 1643 | @code{special-lowercase} or @code{special-titlecase} (@pxref{Character | 1643 | @code{special-lowercase}, or @code{special-titlecase} (@pxref{Character |
| 1644 | Properties}) defined by the Unicode Standard. An example is U+00DF | 1644 | Properties}) defined by the Unicode Standard. An example is U+00DF |
| 1645 | LATIN SMALL LETTER SHARP S, @ss{}, which by default up-cases to the | 1645 | LATIN SMALL LETTER SHARP S, @ss{}, which by default up-cases to the |
| 1646 | string @code{"SS"}, not to U+1E9E LATIN CAPITAL LETTER SHARP S@. To | 1646 | string @code{"SS"}, not to U+1E9E LATIN CAPITAL LETTER SHARP S@. To |
| 1647 | force these characters follow the case-table conversions, set the | 1647 | force these characters to follow the case-table conversions, set the |
| 1648 | corresponding Unicode property to @code{nil}: | 1648 | corresponding Unicode property to @code{nil}: |
| 1649 | 1649 | ||
| 1650 | @example | 1650 | @example |