aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-02-17 00:33:01 +0000
committerKenichi Handa2003-02-17 00:33:01 +0000
commitfb4452cc3205120d4f8d515083474d9bd05daa43 (patch)
treeeeb3e50a9cbac5d596b3cb89224404ec953b93ee /src
parentf0d73ec43574b4a9a2d1f88485d15531ec0e4769 (diff)
downloademacs-fb4452cc3205120d4f8d515083474d9bd05daa43.tar.gz
emacs-fb4452cc3205120d4f8d515083474d9bd05daa43.zip
(string_to_multibyte): Always return a multibyte string.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 877a73c2657..535558bee2d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12003-02-17 Kenichi Handa <handa@m17n.org>
2
3 * fns.c (string_to_multibyte): Always return a multibyte string.
4
12003-02-16 Jason Rumney <jasonr@gnu.org> 52003-02-16 Jason Rumney <jasonr@gnu.org>
2 6
3 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts): Negative 7 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts): Negative
diff --git a/src/fns.c b/src/fns.c
index 69c7418845e..729872722bd 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1053,10 +1053,10 @@ string_to_multibyte (string)
1053 return string; 1053 return string;
1054 1054
1055 nbytes = parse_str_to_multibyte (SDATA (string), SBYTES (string)); 1055 nbytes = parse_str_to_multibyte (SDATA (string), SBYTES (string));
1056 /* If all the chars are ASCII, they won't need any more bytes 1056 /* If all the chars are ASCII or eight-bit-graphic, they won't need
1057 once converted. In that case, we can return STRING itself. */ 1057 any more bytes once converted. */
1058 if (nbytes == SBYTES (string)) 1058 if (nbytes == SBYTES (string))
1059 return string; 1059 return make_multibyte_string (SDATA (string), nbytes, nbytes);
1060 1060
1061 buf = (unsigned char *) alloca (nbytes); 1061 buf = (unsigned char *) alloca (nbytes);
1062 bcopy (SDATA (string), buf, SBYTES (string)); 1062 bcopy (SDATA (string), buf, SBYTES (string));