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\")."