Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]):
> 
> The foreach statement doesn't seem to be checking "each" 'xml-message in
> 'messages. It only seems to be searching on the second message. It will
> find any word in the second message, but ignores the first message
> altogether.
> 
>     foreach xml-message messages [

This must sound stupid, but: Are you sure that messages is still
pointing to the head of the block? Try

     foreach xml-message head messages [

or

        messages: head messages
        foreach xml-message messages [

instead.

Yours,
Jussi

-- 
Jussi Hagman                                CS in Åbo Akademi University
Studentbyn 4 D 33                           [EMAIL PROTECTED]
20540 Åbo                                   [EMAIL PROTECTED]
Finland
-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to