|
From: | Chicken Trac |
Subject: | [Chicken-janitors] #1253: utf8-srfi-13 string-map! does not update in-place |
Date: | Thu, 07 Jan 2016 19:02:41 -0000 |
#1253: utf8-srfi-13 string-map! does not update in-place ---------------------+--------------------- Reporter: caolan | Owner: Type: defect | Status: new Priority: major | Milestone: someday Component: unknown | Version: 4.10.x Keywords: | ---------------------+--------------------- {{{ (use srfi-13) (define str "foo") (string-map! (lambda (c) #\x) str) ;; => "xxx" str ;; => "xxx" }}} {{{ (use utf8-srfi-13) (define str "foo") (string-map! (lambda (c) #\x) str) ;; => "xxx" str ;; => "foo" }}} -- Ticket URL: <http://bugs.call-cc.org/ticket/1253> CHICKEN Scheme <http://www.call-cc.org/> CHICKEN Scheme is a compiler for the Scheme programming language.
[Prev in Thread] | Current Thread | [Next in Thread] |