diff options
author | David Kastrup <dak@gnu.org> | 2013-06-10 13:29:11 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2013-06-10 15:56:19 +0200 |
commit | 5b6ad66fc80e79bd9cffee73b0b31bc9ee7a680d (patch) | |
tree | 6be08bdaf8d17a5fe72b83de58ef0ee0a091ca2c /scm/bar-line.scm | |
parent | 59141a460bf89812b3f250b09e71794d95de7b26 (diff) |
Fix quote marks in doc string of string->string-list.
Diffstat (limited to 'scm/bar-line.scm')
-rw-r--r-- | scm/bar-line.scm | 4 |
1 files 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) |