diff --git a/tools/misc.h b/tools/misc.h index 9009d7951702ccc0e3e0ad4622f184888e8ae984..ee5afcd19b604fa5dbb5d2a9b184efe7ce8e5dbf 100644 --- a/tools/misc.h +++ b/tools/misc.h @@ -52,14 +52,14 @@ enum sexp_mode enum sexp_token { - /* Zero is used to mean "any token" in sexp_parse. */ - SEXP_STRING = 1, + SEXP_STRING, SEXP_DISPLAY, /* Constructed by sexp_parse */ + SEXP_COMMENT, SEXP_LIST_START, SEXP_LIST_END, SEXP_EOF, - /* The below types are internal to the input parsing. sexp-parse + /* The below types are internal to the input parsing. sexp_parse * should never return a token of this type. */ SEXP_DISPLAY_START, SEXP_DISPLAY_END,