Han-Wen Nienhuys writes:

> +     * scm/define-markup-commands.scm (wordwrap-string): remove \r
> +     characters from string before splitting.

> +       
> +       (para-strings (regexp-split
> +                   (string-regexp-substitute "\r" "" arg)
> +                   "\n[ \t\n]*\n[ \t\n]*"))

Hmm.  Won't this lead to bug reports from Apple users?  If we're going
to kludge, why not

       (para-strings (regexp-split
                       (string-regexp-substitute "\r" \n"
                         (string-regexp-substitute "\r\n" "\n" arg))
                           "\n[ \t\n]*\n[ \t\n]*"))

Jan.

-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien       | http://www.lilypond.org


_______________________________________________
lilypond-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to