From b7eef0302ee047f1a0b9d361d0669557eb5a6bdb Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Wed, 31 Jul 2024 17:52:45 -0300 Subject: [PATCH] style: rename module (radix repl command) to (radix repl commands) --- radix/repl/{command.scm => commands.scm} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename radix/repl/{command.scm => commands.scm} (95%) diff --git a/radix/repl/command.scm b/radix/repl/commands.scm similarity index 95% rename from radix/repl/command.scm rename to radix/repl/commands.scm index f43cf66..df98da3 100644 --- a/radix/repl/command.scm +++ b/radix/repl/commands.scm @@ -1,11 +1,11 @@ -(define-module (radix repl command) +(define-module (radix repl commands) #:use-module (guix packages) #:use-module (system repl command) #:use-module (radix combinators)) (define-meta-command ((clear repl) repl) "Clear REPL." - (system* "printf" (object->string "\\033c"))) + (system* "printf" "\\033c")) (define-meta-command ((edit filename) repl filename) "Open FILENAME using the editor (getenv \"EDITOR\")."