From c9db20040e4830744d4f04ccbc26c03486dda754 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 11 Nov 2018 18:34:20 -0800 Subject: Fixed compatibility thing with NomsuCode::from --- tools/autoformat.nom | 2 +- tools/find_action.nom | 2 +- tools/upgrade.nom | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/autoformat.nom b/tools/autoformat.nom index b15f4ce..3082a9e 100755 --- a/tools/autoformat.nom +++ b/tools/autoformat.nom @@ -19,7 +19,7 @@ for %path in %args: for file %filename in %path: unless (%filename::matches "%.nom$"): do next %filename %contents = (read file %filename) - %code = (%NomsuCode::from (Source %filename 1 (size of %contents)) %contents) + %code = (NomsuCode from (Source %filename 1 (size of %contents)) %contents) %tree = (%code parsed) %formatted = ((%tree as nomsu)::text) if %inplace: diff --git a/tools/find_action.nom b/tools/find_action.nom index a6be84f..21482d3 100755 --- a/tools/find_action.nom +++ b/tools/find_action.nom @@ -16,7 +16,7 @@ for %path in %files: for file %filename in %path: unless (%filename::matches "%.nom$"): do next %filename %file = (read file %filename) - %code = (%NomsuCode (%Source %filename 1 (size of %file)) %file) + %code = (NomsuCode from (%Source %filename 1 (size of %file)) %file) try: %tree = (%code parsed) ..and if it barfs %msg: diff --git a/tools/upgrade.nom b/tools/upgrade.nom index 469a127..5f50f73 100755 --- a/tools/upgrade.nom +++ b/tools/upgrade.nom @@ -41,7 +41,7 @@ for %path in %args: for file %filename in %path: unless (%filename::matches "%.nom$"): do next %filename %file = (read file %filename) - %code = (%NomsuCode::from (%Source %filename 1 (size of %file)) %file) + %code = (NomsuCode from (%Source %filename 1 (size of %file)) %file) %tree = (%code parsed) %uptree = (..) %tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to \ -- cgit v1.2.3