From 7d6778a8ba9323f3a127be685eb742b0fcc0eeb7 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 24 Jul 2021 14:40:55 -0600 Subject: [PATCH] more name changing --- src/kiss/Macros.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/kiss/Macros.hx b/src/kiss/Macros.hx index 39e3948..d371274 100644 --- a/src/kiss/Macros.hx +++ b/src/kiss/Macros.hx @@ -493,7 +493,7 @@ class Macros { macros["undefreadermacro"] = (wholeExp:ReaderExp, exps:Array, k:KissState) -> { wholeExp.checkNumArgs(1, 1, '(undefReaderMacro [optional &start] ["[startingString]" or [startingStrings...]])'); - // reader macros undeclared in the form (undefreadermacro &start ...) will be removed from the table + // reader macros undeclared in the form (undefReaderMacro &start ...) will be removed from the table // for reader macros that must be at the beginning of lines // at the beginning of lines var table = k.readTable; @@ -503,9 +503,9 @@ class Macros { var strings = switch (exps[0].def) { case MetaExp("start", stringsExp): table = k.startOfLineReadTable; - stringsThatMatch(stringsExp, "undefreadermacro"); + stringsThatMatch(stringsExp, "undefReaderMacro"); default: - stringsThatMatch(exps[0], "undefreadermacro"); + stringsThatMatch(exps[0], "undefReaderMacro"); }; for (s in strings) { table.remove(s);