diff options
Diffstat (limited to 'doc/lispref/strings.texi')
| -rw-r--r-- | doc/lispref/strings.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 5e0148b75a9..1ecc5671a90 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -483,17 +483,17 @@ dependent; a @var{locale} "en_US.UTF-8" is applicable on POSIX | |||
| 483 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows | 483 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows |
| 484 | systems. | 484 | systems. |
| 485 | 485 | ||
| 486 | If @var{IGNORE-CASE} is non-nil, characters are converted to lower-case | 486 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case |
| 487 | before comparing them. | 487 | before comparing them. |
| 488 | 488 | ||
| 489 | To emulate Unicode-compliant collation on MS-Windows systems, | 489 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 490 | bind @code{w32-collate-ignore-punctuation} to a non-nil value, since | 490 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 491 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 491 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. |
| 492 | 492 | ||
| 493 | If your system does not support a locale environment, this function | 493 | If your system does not support a locale environment, this function |
| 494 | behaves like @code{string-equal}. | 494 | behaves like @code{string-equal}. |
| 495 | 495 | ||
| 496 | Do NOT use this function to compare file names for equality, only | 496 | Do @emph{not} use this function to compare file names for equality, only |
| 497 | for sorting them. | 497 | for sorting them. |
| 498 | @end defun | 498 | @end defun |
| 499 | 499 | ||
| @@ -602,11 +602,11 @@ behave like @code{string-lessp}: | |||
| 602 | @end group | 602 | @end group |
| 603 | @end example | 603 | @end example |
| 604 | 604 | ||
| 605 | If @var{IGNORE-CASE} is non-nil, characters are converted to lower-case | 605 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case |
| 606 | before comparing them. | 606 | before comparing them. |
| 607 | 607 | ||
| 608 | To emulate Unicode-compliant collation on MS-Windows systems, | 608 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 609 | bind @code{w32-collate-ignore-punctuation} to a non-nil value, since | 609 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 610 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 610 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. |
| 611 | 611 | ||
| 612 | If your system does not support a locale environment, this function | 612 | If your system does not support a locale environment, this function |