+2002-01-06 Bruno Haible <bruno@clisp.org>
+
+ * x-librep.c (read_object): Fix handling of #[ and #(.
+
2002-01-06 Bruno Haible <bruno@clisp.org>
* x-lisp.c (read_object): Treat ',.' like ',@'.
}
/*FALLTHROUGH*/
case '\'':
+ case ':':
+ {
+ struct object inner;
+ read_object (&inner);
+ /* Dots and EOF are not allowed here.
+ But be tolerant. */
+ free_object (&inner);
+ op->type = t_other;
+ last_non_comment_line = line_number;
+ return;
+ }
+
case '[':
case '(':
- case ':':
{
struct object inner;
+ do_ungetc (c);
read_object (&inner);
/* Dots and EOF are not allowed here.
But be tolerant. */