diff options
| author | Ken Brown | 2015-11-02 11:22:51 -0500 |
|---|---|---|
| committer | Ken Brown | 2015-11-02 11:22:51 -0500 |
| commit | a9cdc4a23c9ba93095cb6595972cbe2fde450e2c (patch) | |
| tree | 41b6f3cadecc73f2fc7e7299eb06b260d4f53abc /doc/lispref | |
| parent | 5401bb8645f955b6fde8c0a5e5c8cf5ec1cab626 (diff) | |
| download | emacs-a9cdc4a23c9ba93095cb6595972cbe2fde450e2c.tar.gz emacs-a9cdc4a23c9ba93095cb6595972cbe2fde450e2c.zip | |
Document behavior of collation on Cygwin
* test/automated/fns-tests.el (fns-tests-collate-sort): Mark as
expected failure on Cygwin.
* doc/lispref/strings.texi (Text Comparison): Document that
punctuation and whitespace are not ignored for sorting on Cygwin.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/strings.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 143de82d9ad..f8685d9312c 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -584,8 +584,8 @@ determined by the lexicographic order of the characters contained in | |||
| 584 | relations between these characters. Usually, it is defined by the | 584 | relations between these characters. Usually, it is defined by the |
| 585 | @var{locale} environment Emacs is running with. | 585 | @var{locale} environment Emacs is running with. |
| 586 | 586 | ||
| 587 | For example, punctuation and whitespace characters might be considered | 587 | For example, punctuation and whitespace characters might be ignored |
| 588 | less significant for @ref{Sorting,,sorting}. | 588 | for sorting (@pxref{Sequence Functions}): |
| 589 | 589 | ||
| 590 | @example | 590 | @example |
| 591 | @group | 591 | @group |
| @@ -594,6 +594,9 @@ less significant for @ref{Sorting,,sorting}. | |||
| 594 | @end group | 594 | @end group |
| 595 | @end example | 595 | @end example |
| 596 | 596 | ||
| 597 | This behavior is system-dependent; punctuation and whitespace are | ||
| 598 | never ignored on Cygwin, regardless of locale. | ||
| 599 | |||
| 597 | The optional argument @var{locale}, a string, overrides the setting of | 600 | The optional argument @var{locale}, a string, overrides the setting of |
| 598 | your current locale identifier for collation. The value is system | 601 | your current locale identifier for collation. The value is system |
| 599 | dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX | 602 | dependent; a @var{locale} @code{"en_US.UTF-8"} is applicable on POSIX |