From 84680d238299c3b2c8be42b16a8be0ff6e02ba5c Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 8 Nov 2013 17:42:54 +0100 Subject: Miscellaneous fixups related to objcode removal. * module/scripts/compile.scm: Fix --help message. * module/system/repl/command.scm (disassemble): Fix error message. * module/system/vm/frame.scm: Remove objcode import. * module/system/vm/objcode.scm: Remove some exports related to the objcode type. --- module/system/repl/command.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/system/repl') diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm index 8f72430c8..631957a83 100644 --- a/module/system/repl/command.scm +++ b/module/system/repl/command.scm @@ -497,7 +497,8 @@ Disassemble a compiled procedure." ((bytevector? obj) (disassemble-image (load-image obj))) (else - (format #t "Argument to ,disassemble not a procedure or objcode: ~a~%" + (format #t + "Argument to ,disassemble not a procedure or a bytevector: ~a~%" obj))))) (define-meta-command (disassemble-file repl file) -- cgit v1.2.3