From 6720b34868c0eb89db251b89d9b6d0055b37a254 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Wed, 18 Nov 2020 19:37:18 -0600 Subject: [PATCH] Don't use peg for patch tool. --- tools/patch-header.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/patch-header.janet b/tools/patch-header.janet index af44aba0..96ed0b5e 100644 --- a/tools/patch-header.janet +++ b/tools/patch-header.janet @@ -1,3 +1,3 @@ # Patch janet.h (def [_ janeth janetconf output] (dyn :args)) -(spit output (peg/replace `#include "janetconf.h"` (slurp janetconf) (slurp janeth))) +(spit output (string/replace `#include "janetconf.h"` (slurp janetconf) (slurp janeth)))