From: Taylor R Campbell Date: Wed, 12 Jun 2013 20:09:02 +0000 (+0000) Subject: Put a space after the colon when reporting an undefined command. X-Git-Tag: release-9.2.0~153 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=36f27499f0d8d96deb4f15744f982bed801cf345;p=mit-scheme.git Put a space after the colon when reporting an undefined command. --- diff --git a/src/edwin/comman.scm b/src/edwin/comman.scm index 162797ddf..48678ebd0 100644 --- a/src/edwin/comman.scm +++ b/src/edwin/comman.scm @@ -84,7 +84,7 @@ USA. name "undefined command" '() - (lambda () (editor-error "Undefined command:" name))))) + (lambda () (editor-error "Undefined command: " name))))) command)) (else (error:bad-range-argument if-undefined 'NAME->COMMAND)))))