diff options
Diffstat (limited to 'doc/lispref/strings.texi')
| -rw-r--r-- | doc/lispref/strings.texi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index d882be485ef..4a338931601 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -486,8 +486,8 @@ accent Unicode characters: | |||
| 486 | 486 | ||
| 487 | The optional argument @var{locale}, a string, overrides the setting of | 487 | The optional argument @var{locale}, a string, overrides the setting of |
| 488 | your current locale identifier for collation. The value is system | 488 | your current locale identifier for collation. The value is system |
| 489 | dependent; a @var{locale} "en_US.UTF-8" is applicable on POSIX | 489 | dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX |
| 490 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows | 490 | systems, while it would be, e.g., @code{"enu_USA.1252"} on MS-Windows |
| 491 | systems. | 491 | systems. |
| 492 | 492 | ||
| 493 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case | 493 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case |
| @@ -495,7 +495,7 @@ before comparing them. | |||
| 495 | 495 | ||
| 496 | To emulate Unicode-compliant collation on MS-Windows systems, | 496 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 497 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since | 497 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 498 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 498 | the codeset part of the locale cannot be @code{"UTF-8"} on MS-Windows. |
| 499 | 499 | ||
| 500 | If your system does not support a locale environment, this function | 500 | If your system does not support a locale environment, this function |
| 501 | behaves like @code{string-equal}. | 501 | behaves like @code{string-equal}. |
| @@ -596,9 +596,9 @@ less significant for @ref{Sorting,,sorting}. | |||
| 596 | 596 | ||
| 597 | The optional argument @var{locale}, a string, overrides the setting of | 597 | The optional argument @var{locale}, a string, overrides the setting of |
| 598 | your current locale identifier for collation. The value is system | 598 | your current locale identifier for collation. The value is system |
| 599 | dependent; a @var{locale} "en_US.UTF-8" is applicable on POSIX | 599 | dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX |
| 600 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows | 600 | systems, while it would be, e.g., @code{"enu_USA.1252"} on MS-Windows |
| 601 | systems. The @var{locale} "POSIX" lets @code{string-collate-lessp} | 601 | systems. The @var{locale} @code{"POSIX"} lets @code{string-collate-lessp} |
| 602 | behave like @code{string-lessp}: | 602 | behave like @code{string-lessp}: |
| 603 | 603 | ||
| 604 | @example | 604 | @example |
| @@ -614,7 +614,7 @@ before comparing them. | |||
| 614 | 614 | ||
| 615 | To emulate Unicode-compliant collation on MS-Windows systems, | 615 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 616 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since | 616 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 617 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 617 | the codeset part of the locale cannot be @code{"UTF-8"} on MS-Windows. |
| 618 | 618 | ||
| 619 | If your system does not support a locale environment, this function | 619 | If your system does not support a locale environment, this function |
| 620 | behaves like @code{string-lessp}. | 620 | behaves like @code{string-lessp}. |