Add back extra space
This commit is contained in:
parent
0cd929a661
commit
354ed77535
@ -69,7 +69,7 @@ env_t *namespace_env(env_t *env, const char *namespace_name);
|
|||||||
#define compiler_err(f, start, end, ...) ({ \
|
#define compiler_err(f, start, end, ...) ({ \
|
||||||
file_t *_f = f; \
|
file_t *_f = f; \
|
||||||
if (USE_COLOR) \
|
if (USE_COLOR) \
|
||||||
fputs("\x1b[31;7;1m", stderr); \
|
fputs("\x1b[31;7;1m ", stderr); \
|
||||||
if (_f && start && end) \
|
if (_f && start && end) \
|
||||||
fprint_inline(stderr, _f->relative_filename, ":", get_line_number(_f, start), ".", get_line_column(_f, start), ": "); \
|
fprint_inline(stderr, _f->relative_filename, ":", get_line_number(_f, start), ".", get_line_column(_f, start), ": "); \
|
||||||
fprint_inline(stderr, __VA_ARGS__); \
|
fprint_inline(stderr, __VA_ARGS__); \
|
||||||
|
Loading…
Reference in New Issue
Block a user