Bug #138 ยป 0028-Annotate-make_escapes-fallthrough.patch
utility/support.c | ||
---|---|---|
case '\\':
|
||
case '\"':
|
||
*dest++ = '\\';
|
||
/* Fallthrough. */
|
||
fc__fallthrough;
|
||
default:
|
||
*dest++ = *str++;
|
||
break;
|