aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/fns.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7872fec0d99..935555f5b6b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12009-08-10 Ken Raeburn <raeburn@raeburn.org> 12009-08-10 Ken Raeburn <raeburn@raeburn.org>
2 2
3 * fns.c (concat): Don't re-set string length to its current
4 value.
5
3 * coding.h (decode_coding_string, encode_coding_string): Use 6 * coding.h (decode_coding_string, encode_coding_string): Use
4 SBYTES macro. 7 SBYTES macro.
5 8
diff --git a/src/fns.c b/src/fns.c
index 07663830248..61abf32138d 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -661,7 +661,6 @@ concat (nargs, args, target_type, last_special)
661 } 661 }
662 toindex_byte += thislen_byte; 662 toindex_byte += thislen_byte;
663 toindex += thisleni; 663 toindex += thisleni;
664 STRING_SET_CHARS (val, SCHARS (val));
665 } 664 }
666 /* Copy a single-byte string to a multibyte string. */ 665 /* Copy a single-byte string to a multibyte string. */
667 else if (STRINGP (this) && STRINGP (val)) 666 else if (STRINGP (this) && STRINGP (val))