chicken-janitors
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-janitors] #1253: utf8-srfi-13 string-map! does not update in-pl


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.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]