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.11-3-gb27ad2


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.11-3-gb27ad2f
Date: Mon, 14 Apr 2014 14:17:04 +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=b27ad2f394c5e4465f5cdee748534d013919cfa1

The branch, stable-2.0 has been updated
       via  b27ad2f394c5e4465f5cdee748534d013919cfa1 (commit)
      from  0ece4850c5423d53db3245f57681053486327aa3 (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 b27ad2f394c5e4465f5cdee748534d013919cfa1
Author: Andy Wingo <address@hidden>
Date:   Mon Apr 14 16:12:14 2014 +0200

    Readline history preserves newlines
    
    * guile-readline/ice-9/readline.scm (make-readline-port): Preserve
      newlines.  This preserves the semantics of history entries that
      contain until-end-of-line comments using `;'.

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

Summary of changes:
 guile-readline/ice-9/readline.scm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/guile-readline/ice-9/readline.scm 
b/guile-readline/ice-9/readline.scm
index a9f7cdc..cfaaef3 100644
--- a/guile-readline/ice-9/readline.scm
+++ b/guile-readline/ice-9/readline.scm
@@ -1,6 +1,6 @@
 ;;;; readline.scm --- support functions for command-line editing
 ;;;;
-;;;;   Copyright (C) 1997, 1999, 2000, 2001, 2002, 2006, 2009, 2010, 2011 Free 
Software Foundation, Inc.
+;;;;   Copyright (C) 1997, 1999, 2000, 2001, 2002, 2006, 2009, 2010, 2011, 
2014 Free Software Foundation, Inc.
 ;;;; 
 ;;;; This program is free software; you can redistribute it and/or modify
 ;;;; it under the terms of the GNU General Public License as published by
@@ -105,7 +105,7 @@
                                            (set! history-buffer
                                                  (if history-buffer
                                                      (string-append 
history-buffer
-                                                                    " "
+                                                                    "\n"
                                                                     str)
                                                      str)))
                                        str)))))


hooks/post-receive
-- 
GNU Guile



reply via email to

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