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