mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-09 14:07:34 +02:00
supporting email stripping for multiple authors
This commit is contained in:
parent
0c856a1bba
commit
841bf95509
1 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,10 @@
|
|||
((not (package? pkg))
|
||||
#f)
|
||||
((assoc-get (cdr pkg) 'authors)
|
||||
=> (lambda (authors) (if show-email? authors (strip-email authors))))
|
||||
=> (lambda (authors)
|
||||
(cond (show-email? authors)
|
||||
((pair? authors) (map strip-email authors))
|
||||
(else (strip-email authors)))))
|
||||
(else
|
||||
(let ((email (package-email pkg)))
|
||||
(or (cond
|
||||
|
|
Loading…
Add table
Reference in a new issue