diff options
Diffstat (limited to 'object/print.c')
-rw-r--r-- | object/print.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/object/print.c b/object/print.c index 8c756f30..7ada9845 100644 --- a/object/print.c +++ b/object/print.c @@ -16,12 +16,12 @@ static void fmtobj(struct fmt *fmt, fz_obj *obj); static inline int isdelim(int ch) { - return ch == '(' || ch == ')' || - ch == '<' || ch == '>' || - ch == '[' || ch == ']' || - ch == '{' || ch == '}' || - ch == '/' || - ch == '%'; + return ch == '(' || ch == ')' || + ch == '<' || ch == '>' || + ch == '[' || ch == ']' || + ch == '{' || ch == '}' || + ch == '/' || + ch == '%'; } static inline void fmtputc(struct fmt *fmt, int c) |