From: David Kastrup Date: Mon, 10 Jun 2013 11:29:11 +0000 (+0200) Subject: Fix quote marks in doc string of string->string-list. X-Git-Tag: release/2.17.21-1~15^2~20 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5b6ad66fc80e79bd9cffee73b0b31bc9ee7a680d;p=lilypond.git Fix quote marks in doc string of string->string-list. --- diff --git a/scm/bar-line.scm b/scm/bar-line.scm index 370f0d476c..2521e47027 100644 --- a/scm/bar-line.scm +++ b/scm/bar-line.scm @@ -135,8 +135,8 @@ mandatory to the procedures stored in @code{bar-glyph-print-procedures}." (define (string->string-list str) "Convert a string into a list of strings with length 1. -@code{"aBc"} will be converted to @code{("a" "B" "c")}. -An empty string will be converted to a list containing @code{""}." +@code{\"aBc\"} will be converted to @code{(\"a\" \"B\" \"c\")}. +An empty string will be converted to a list containing @code{\"\"}." (if (and (string? str) (not (zero? (string-length str)))) (map (lambda (s)