revised honu id syntax (to fix underscore)

svn: r13512
This commit is contained in:
Matthew Flatt 2009-02-10 02:25:01 +00:00
parent 82f6c33458
commit efe4bf597c

View File

@ -429,7 +429,7 @@ void scheme_init_read(Scheme_Env *env)
delim['`'] -= SCHEME_OK;
delim['_'] |= HONU_OK;
{
GC_CAN_IGNORE const char *syms = "+-_=?:<>.!%^&*/~|";
GC_CAN_IGNORE const char *syms = "+-=?:<>.!%^&*/~|";
for (i = 0; syms[i]; i++) {
delim[(int)syms[i]] |= HONU_SYM_OK;
}