From: Ken Raeburn Date: Mon, 15 Jul 2002 06:55:28 +0000 (+0000) Subject: * fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS. X-Git-Tag: ttn-vms-21-2-B4~14130 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a2e5600ea41ecaf988a4ebe7303293a1d234a03;p=emacs.git * fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS. --- diff --git a/src/fns.c b/src/fns.c index 9874b4dfa48..1ce66b63fb9 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1135,7 +1135,7 @@ multibyte character of charset `eight-bit-control' or `eight-bit-graphic'. */) str_as_multibyte (SDATA (new_string), nbytes, SBYTES (string), NULL); string = new_string; - STRING_INTERVALS (string) = NULL_INTERVAL; + STRING_SET_INTERVALS (string, NULL_INTERVAL); } return string; }