From 20354be0cb77f857df785b21661c4642f24ae641 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Sun, 26 Nov 2023 06:41:51 +0000 Subject: [PATCH] environment: fix 'define command-line' macro Remove a form of the macro that isn't used and expands to code that wouldn't work because `define command-line-class` doesn't exist. --- sources/environment/commands/command-line.dylan | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sources/environment/commands/command-line.dylan b/sources/environment/commands/command-line.dylan index 840fabeac..19d8d5505 100644 --- a/sources/environment/commands/command-line.dylan +++ b/sources/environment/commands/command-line.dylan @@ -816,14 +816,6 @@ define method command-line-loop end method command-line-loop; define macro command-line-definer - { define command-line ?name:name (?options:*) - ?parameters:* - end } - => { define command-line-class ?name (?options) ?parameters end; - define command-line-constant ?name => "<" ## ?name ## "-command>" (?options) - ?parameters - end } - { define command-line ?name:name => ?command:name (?options:*) ?parameters:* end }