Correct syntax error in sexp_string

This commit is contained in:
Tony Garnock-Jones 2010-12-31 17:26:54 -05:00
parent a2fabf1605
commit 53609faa82
1 changed files with 3 additions and 3 deletions

6
sexp.h
View File

@ -49,9 +49,9 @@ extern sexp_t *sexp_cons(sexp_t *head, sexp_t *tail);
})
#define sexp_stringp(x) ({ \
sexp_t *__x = (x); \
sexp_simple_stringp(__x) || ((__x != NULL) && (__x->kind == SEXP_DISPLAY_HINT)); \
}
sexp_t *__x = (x); \
sexp_simple_stringp(__x) || ((__x != NULL) && (__x->kind == SEXP_DISPLAY_HINT)); \
})
#define sexp_pairp(x) ({ \
sexp_t *__x = (x); \