Fix missing source information in JMdict.

Julien LepillerMon Jun 22 22:45:45+0200 2020

99c3db2

Fix missing source information in JMdict.

modules/nani/jmdict/xml.scm

5454
          ((('xml . 'lang) l) (update-source source #:lang l))
5555
          (((? symbol? s) v) (throw 'unknown-content s v))
5656
          ((? list? l) (loop source l))
57-
          ((? string? _) source))
57+
          ((? string? c) (update-source source #:content
58+
                                        (cons c (source-content source)))))
5859
        (cdr lst)))))
5960
6061
(define (sxml->sense lst)