From: Tim Vaughan Date: Tue, 18 Jun 2019 09:13:57 +0000 (+0200) Subject: Added missing newlines to usage message. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scratchy.git;a=commitdiff_plain;h=3a078afdc53f4dcbb9e349f1561ea1f179e1d99c Added missing newlines to usage message. --- diff --git a/scratchy.scm b/scratchy.scm index df538b4..0bc9a6a 100644 --- a/scratchy.scm +++ b/scratchy.scm @@ -314,12 +314,12 @@ progname " -h/--help\n" progname " [-n/--no-footer] [-u/--user UID] [-g/--group GID] root-dir hostname [port]\n" "\n" - "The -n option tells the server to not display a directory footer." - "The -u and -g can be used to set the UID and GID of the process following" + "The -n option tells the server to not display a directory footer.\n" + "The -u and -g can be used to set the UID and GID of the process following\n" "the creation of the TCP port listener (which often requires root).")) (define (main) - (let* ((progname (car (argv))) + (let* ((progname (pathname-file (car (argv)))) (config (make-config '() '() 70 #t '() '()))) (if (null? (cdr (argv))) (print-usage progname)