mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-11 23:07:36 +02:00
Encode comma syntax
This commit is contained in:
parent
d72feb5d34
commit
9226403da9
1 changed files with 3 additions and 1 deletions
|
@ -6119,7 +6119,9 @@ void Cyc_io_read_token(void *data, object cont, object port)
|
|||
p->col_num++;
|
||||
return_thread_runnable(data, unquote_splicing);
|
||||
} else {
|
||||
return_thread_runnable(data, obj_char2obj(c));
|
||||
// Again, special encoding for syntax
|
||||
make_c_opaque(opq, obj_char2obj(c));
|
||||
return_thread_runnable(data, &opq);
|
||||
}
|
||||
} else if (c == '"') {
|
||||
if (p->tok_end) _read_return_atom(data, cont, p);
|
||||
|
|
Loading…
Add table
Reference in a new issue