Jan Nieuwenhuizen wrote:
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]*"))
Applied, although the problem is a bit theoretical. MacOS X is Unix, so
it uses \n.
--
Han-Wen Nienhuys - [EMAIL PROTECTED] - http://www.xs4all.nl/~hanwen
_______________________________________________
lilypond-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-devel