diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-15 06:22:49 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-15 06:22:49 +0000 |
commit | e2eceefd08748d0b5c6b707154e42e32c18aa74d (patch) | |
tree | 410afef9741dff97642c267ece942d7cfeeab0f6 /ruby.c | |
parent | 844cd0c454d66a8239833411d3fb131f801fcad9 (diff) | |
download | ruby-e2eceefd08748d0b5c6b707154e42e32c18aa74d.tar.gz ruby-e2eceefd08748d0b5c6b707154e42e32c18aa74d.tar.xz ruby-e2eceefd08748d0b5c6b707154e42e32c18aa74d.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r-- | ruby.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |