Commit 48238e1b authored by bar@mysql.com's avatar bar@mysql.com

Merge mysql.com:/usr/home/bar/mysql-4.1.b13487

into  mysql.com:/usr/home/bar/mysql-4.1
parents 3369f5bd ceb541e4
......@@ -1157,11 +1157,17 @@ static bool add_line(String &buffer,char *line,char *in_string,
#ifdef USE_MB
int l;
if (use_mb(charset_info) &&
(l = my_ismbchar(charset_info, pos, strend))) {
while (l--)
*out++ = *pos++;
pos--;
continue;
(l= my_ismbchar(charset_info, pos, strend)))
{
if (!*ml_comment)
{
while (l--)
*out++ = *pos++;
pos--;
}
else
pos+= l - 1;
continue;
}
#endif
if (!*ml_comment && inchar == '\\')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment