1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

* fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS.

This commit is contained in:
Ken Raeburn 2002-07-15 06:55:28 +00:00
parent ab77f05c7f
commit 7a2e5600ea

View file

@ -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;
}