From 5b6ad66fc80e79bd9cffee73b0b31bc9ee7a680d Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 10 Jun 2013 13:29:11 +0200 Subject: [PATCH] Fix quote marks in doc string of string->string-list. --- scm/bar-line.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2