From 40efaa47a3f9a89b1d20740a91d02d73edc4bdee Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sun, 1 Nov 2020 16:20:12 +0100 Subject: [PATCH] mes: compatibility: Move (mes pmatch) to (system base pmatch). * mes/module/system/base/pmatch.scm: Move from mes/pmatch.scm. Update users. --- AUTHORS | 2 +- mes/module/mes/pmatch.mes | 2 +- mes/module/{mes => system/base}/pmatch.scm | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename mes/module/{mes => system/base}/pmatch.scm (100%) diff --git a/AUTHORS b/AUTHORS index eb623e40..c69e5e50 100644 --- a/AUTHORS +++ b/AUTHORS @@ -60,7 +60,7 @@ PEG from Guile mes/module/mes/peg/ Pmatch from Guile -mes/module/mes/pmatch.scm +mes/module/system/base/pmatch.scm Pretty-print from Guile mes/module/mes/pretty-print.scm diff --git a/mes/module/mes/pmatch.mes b/mes/module/mes/pmatch.mes index 4f15bc3b..1ee8b0ee 100644 --- a/mes/module/mes/pmatch.mes +++ b/mes/module/mes/pmatch.mes @@ -25,4 +25,4 @@ ;;(mes-use-module (mes guile)) (mes-use-module (mes quasiquote)) (mes-use-module (mes syntax)) -(include-from-path "mes/pmatch.scm") +(include-from-path "system/base/pmatch.scm") diff --git a/mes/module/mes/pmatch.scm b/mes/module/system/base/pmatch.scm similarity index 100% rename from mes/module/mes/pmatch.scm rename to mes/module/system/base/pmatch.scm