Cond is not local scope.
This commit is contained in:
parent
e108c06a98
commit
33d18216f0
1 changed files with 12 additions and 12 deletions
|
@ -285,9 +285,9 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
(mailman-sync-members internal-ml (members-base-active-emails MB))
|
||||
(print "Mailman synchronization disabled with manually specified current month.")))
|
||||
((mlcheck)
|
||||
(define-values (missing surplus)
|
||||
(let-values (((missing surplus)
|
||||
(mailman-compare-members internal-ml
|
||||
(membars-base-active-emails MB)))
|
||||
(membars-base-active-emails MB))))
|
||||
(if (and (null? missing)
|
||||
(null? surplus))
|
||||
(print "Internal mailing list membership in sync.")
|
||||
|
@ -296,7 +296,7 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
(when (not (null? missing))
|
||||
(print " Missing: " missing))
|
||||
(when (not (null? surplus))
|
||||
(print " Outsiders: " surplus)))))
|
||||
(print " Outsiders: " surplus))))))
|
||||
(else
|
||||
(print "Nothing to do."))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue