+2014-12-02 Daiki Ueno <ueno@gnu.org>
+
+ c: Minor cleanup of the previous commit
+ * x-c.c (phase5_get): Remove redundant check of is_prefix; fit
+ lines to 80 column.
+
2014-12-02 Daiki Ueno <ueno@gnu.org>
c: Support C++11 string literals
if (is_prefix)
{
- raw_expected = is_prefix && buffer[bufpos - 1] == 'R';
+ raw_expected = buffer[bufpos - 1] == 'R';
bufpos = 0;
goto string;
}
if (c == '\n' && !raw_expected)
{
error_with_progname = false;
- error (0, 0, _("%s:%d: warning: unterminated string literal"),
+ error (0, 0,
+ _("%s:%d: warning: unterminated string literal"),
logical_file_name, line_number - 1);
error_with_progname = true;
phase3_ungetc ('\n');