diff --git a/src/mailman.scm b/src/mailman.scm index 6a47da8..2911b56 100644 --- a/src/mailman.scm +++ b/src/mailman.scm @@ -39,6 +39,7 @@ (chicken base) (chicken pathname) (chicken string) + (chicken sort) utils) ;; Where does the mailman binaries reside @@ -62,7 +63,9 @@ ;; Returns the list of members of given list (define (list-mailman-list-members lst) - (get-mailman-output-lines "list_members" lst)) + (sort + (get-mailman-output-lines "list_members" lst) + string