From e2eceefd08748d0b5c6b707154e42e32c18aa74d Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 15 Aug 2000 06:22:49 +0000 Subject: matz git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index 7319889da..2bd485a6c 100644 --- a/ruby.c +++ b/ruby.c @@ -93,14 +93,13 @@ usage(name) "-x[directory] strip off text before #!ruby line and perhaps cd to directory", "--copyright print the copyright", "--version print the version", -"\n", NULL }; char **p = usage_msg; - printf("\nUsage: %s [switches] [--] [programfile] [arguments]", name); + printf("Usage: %s [switches] [--] [programfile] [arguments]\n", name); while (*p) - printf("\n %s", *p++); + printf(" %s\n", *p++); } extern VALUE rb_load_path; -- cgit