guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-99-g4dbd29


From: Mark H Weaver
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.3-99-g4dbd29a
Date: Wed, 04 Jan 2012 18:46:48 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=4dbd29a9b8ea272fde54dcb0e8f47e23961f65d2

The branch, stable-2.0 has been updated
       via  4dbd29a9b8ea272fde54dcb0e8f47e23961f65d2 (commit)
      from  34a1045f7d60d733c259dc262682bbfb78fbd20e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4dbd29a9b8ea272fde54dcb0e8f47e23961f65d2
Author: Mark H Weaver <address@hidden>
Date:   Wed Jan 4 13:43:47 2012 -0500

    Fix docs of string mutators to do so on a mutable string
    
    * doc/ref/api-data.texi (String Modification): Change
      (define y "abcdefg") => (define y (string-copy "abcdefg"))
      before mutating the string bound to y in the example code.

-----------------------------------------------------------------------

Summary of changes:
 doc/ref/api-data.texi |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi
index 5017165..f2450ce 100644
--- a/doc/ref/api-data.texi
+++ b/doc/ref/api-data.texi
@@ -3366,7 +3366,7 @@ Change every character in @var{str} between @var{start} 
and
 @var{end} to @var{fill}.
 
 @lisp
-(define y "abcdefg")
+(define y (string-copy "abcdefg"))
 (substring-fill! y 1 3 #\r)
 y
 @result{} "arrdefg"


hooks/post-receive
-- 
GNU Guile



reply via email to

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