From: Han-Wen Nienhuys Date: Tue, 6 Apr 2004 00:05:34 +0000 (+0000) Subject: (read-encoding-file): split up large function, X-Git-Tag: release/2.3.0~86 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b6f33517b38cf00bbd6d09b3a1186552b24427f3;p=lilypond.git (read-encoding-file): split up large function, leave caching to (delay) --- diff --git a/scm/encoding.scm b/scm/encoding.scm index c0f9f5f3d6..0767ad9a23 100644 --- a/scm/encoding.scm +++ b/scm/encoding.scm @@ -39,7 +39,7 @@ vector of symbols." h)) (define-public (reencode-string permutation str) - "Apply PERMUTATION (a vector of [0..256) -> [0..256) to STR" + "Apply PERMUTATION, a vector of [0..256) -> char, to STR" (string-map (lambda (chr) (vector-ref permutation (char->integer chr))) str))