+2014-08-30 Eli Zaretskii <eliz@gnu.org>
+
+ * authors.el (authors): Fix last change so it works for MS-Windows
+ as well.
+
2014-08-29 Michael Albinus <michael.albinus@gmx.de>
* authors.el (authors): Use LOCALE argument of `string-collate-lessp'.
(setq authors-author-list
(sort authors-author-list
(lambda (a b)
- (string-collate-lessp (car a) (car b) "en_US.UTF-8"))))
+ (string-collate-lessp (car a) (car b)
+ (if (eq system-type 'windows-nt)
+ "enu_USA"
+ "en_US.UTF-8")))))
(dolist (a authors-author-list)
(let ((author (car a))
(wrote (nth 1 a))