1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/5465cf0baa42/
Changeset:   5465cf0baa42
User:        kehoea
Date:        2017-05-17 22:27:34+00:00
Summary:     Small fix, #'generate-new-buffer-name.
2017-05-17  Aidan Kehoe  <kehoea(a)parhasard.net>
	* buffer.c (Fgenerate_new_buffer_name):
	Start the count here at <2> as documented, rather than 3.
Affected #:  2 files
diff -r d745116738120282e98054133b2835e04a206758 -r
5465cf0baa425adc8df3c11e14f9c3783c6bc702 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -27,6 +27,11 @@
 	Accept a vector PACKAGE here too, thank you for the bug report,
 	Raymond Toy.	
 
+2017-05-17  Aidan Kehoe  <kehoea(a)parhasard.net>
+
+	* buffer.c (Fgenerate_new_buffer_name):
+	Start the count here at <2> as documented, rather than 3.
+
 2017-04-19  Aidan Kehoe  <kehoea(a)parhasard.net>
 
 	* buffer.c:
diff -r d745116738120282e98054133b2835e04a206758 -r
5465cf0baa425adc8df3c11e14f9c3783c6bc702 src/buffer.c
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -814,7 +814,7 @@
     + sizeof ("<>");
   candidate = alloca_ibytes (csize);
 
-  count = itext_ichar_eql (XSTRING_DATA (name), ' ') ? get_random () : 2;
+  count = itext_ichar_eql (XSTRING_DATA (name), ' ') ? get_random () : 1;
   while (1)
     {
       /* XEmacs; GNU worry about the performance of this function, and then
Repository URL: 
https://bitbucket.org/xemacs/xemacs/
--
This is a commit notification from 
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.