From f8b73d593ca147e48a723d3dceda7c5977d21ae6 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Thu, 9 Oct 2014 19:34:12 +0000 Subject: Prelude.CAPIT is now a built-in primitive. It still generates &| in the Haskell runtime but will be intepreted in the C runtime --- src/runtime/c/pgf/printer.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/runtime/c/pgf/printer.c') diff --git a/src/runtime/c/pgf/printer.c b/src/runtime/c/pgf/printer.c index 10a9858c1..e3e014c4b 100644 --- a/src/runtime/c/pgf/printer.c +++ b/src/runtime/c/pgf/printer.c @@ -276,6 +276,10 @@ pgf_print_symbol(PgfSymbol sym, GuOut *out, GuExn *err) gu_puts("SOFT_BIND", out, err); break; } + case PGF_SYMBOL_CAPIT: { + gu_puts("CAPIT", out, err); + break; + } default: gu_impossible(); } -- cgit v1.2.3