]> git.eshelyaron.com Git - emacs.git/commitdiff
* fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS.
authorKen Raeburn <raeburn@raeburn.org>
Mon, 15 Jul 2002 06:55:28 +0000 (06:55 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 15 Jul 2002 06:55:28 +0000 (06:55 +0000)
src/fns.c

index 9874b4dfa48e81e377d3c63573cca886202ea745..1ce66b63fb9a85e7f7827cbfe5717302f2b956ed 100644 (file)
--- 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;
 }