Commit 164c5145 authored by unknown's avatar unknown

Fix for bug #4373: \u behaves differently

parent c91fb136
...@@ -2693,8 +2693,9 @@ char *get_arg(char *line, my_bool get_next_arg) ...@@ -2693,8 +2693,9 @@ char *get_arg(char *line, my_bool get_next_arg)
ptr++; ptr++;
if (*ptr == '\\') // short command was used if (*ptr == '\\') // short command was used
ptr+= 2; ptr+= 2;
while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command else
ptr++; while (*ptr &&!my_isspace(charset_info, *ptr)) // skip command
ptr++;
} }
if (!*ptr) if (!*ptr)
return NullS; return NullS;
......
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