[PATCH] Add ,delete-all to delete all traps

2022-07-12 Thread Ekaitz Zarraga
From 066d20e1f0a2b4bb864d23517c96f8fb94b9bdcb Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 12 Jul 2022 10:05:46 +0200 Subject: [PATCH] Add ,delete-all to delete all traps * module/system/repl/command.scm (delete-all): New meta-command. --- module/system/repl/command.scm | 9 - 1 file changed, 8 insertions(+), 1 del

[PATCH] PEG: Add full support for PEG + some extensions

2024-09-11 Thread Ekaitz Zarraga
This commit adds support for PEG as described in: It adds support for the missing features (comments, underscores in identifiers and escaping) while keeping the extensions (dashes in identifiers, < and <--). The naming system tries to be as close as poss

Re: [PATCH v2 5/5] peg: Add fall-back parsing.

2024-10-18 Thread Ekaitz Zarraga
Hi On 2024-10-16 08:44, Rutger van Beusekom wrote: *Subject:* Re: [PATCH v2 5/5] peg: Add fall-back parsing. Hi Ekaitz, > I think this change is not compatible with the PEG syntax. In PEG # is a > line comment: I am not attached to # as the PEG expect operator.  At the same time the expect

Re: [PATCH v2 5/5] peg: Add fall-back parsing.

2024-10-14 Thread Ekaitz Zarraga
On 2024-10-14 09:36, Janneke Nieuwenhuizen wrote: Janneke Nieuwenhuizen writes: From: Rutger van Beusekom This allows production of incomplete parse trees, without errors, e.g., for code completion. * module/ice-9/peg/codegen.scm (%peg:fall-back?): New exported parameter. (%enable-expect, %c