aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn2002-07-15 06:55:28 +0000
committerKen Raeburn2002-07-15 06:55:28 +0000
commit7a2e5600ea41ecaf988a4ebe7303293a1d234a03 (patch)
treeaeb0a3ad519cf594c5261cc789e86f0eb2393d8e
parentab77f05c7fbf2c48faf992cf8fd13b40c497b861 (diff)
downloademacs-7a2e5600ea41ecaf988a4ebe7303293a1d234a03.tar.gz
emacs-7a2e5600ea41ecaf988a4ebe7303293a1d234a03.zip
* fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS.
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
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'. */)
1135 str_as_multibyte (SDATA (new_string), nbytes, 1135 str_as_multibyte (SDATA (new_string), nbytes,
1136 SBYTES (string), NULL); 1136 SBYTES (string), NULL);
1137 string = new_string; 1137 string = new_string;
1138 STRING_INTERVALS (string) = NULL_INTERVAL; 1138 STRING_SET_INTERVALS (string, NULL_INTERVAL);
1139 } 1139 }
1140 return string; 1140 return string;
1141} 1141}