From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 8537 invoked from network); 25 Oct 2022 18:34:51 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 25 Oct 2022 18:34:51 -0000 Received: from tilde.team ([198.50.210.248]) by 9front; Tue Oct 25 14:33:35 -0400 2022 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tilde.team; s=mail; t=1666722814; bh=Yal4znJtDzmQ8vBidm317JSorOXjdF2Iqt2UWUpsUdU=; h=Date:From:To:Subject:From; b=ZUeWOvaaR7rasOQGxcVr4KWx9JQZ5BafdSboj3s2KS8uz/IRBB3ErONrLhiVOq1Xk 4rBdG5zCCN5G4z4Y1BWxLc6bdpnwHHq9dbM2RYhuOVslJ91IhbB0UbI1DUQgY1W5mY DDTQEuVjtjH/s59UhUyFWd24GS0VBQg2w6blyOwY= Received: from quark.home.arpa (unknown [IPv6:2607:fb90:938b:db84:9ffb:d3e1:4317:7cf9]) by tilde.team (Postfix) with ESMTPSA id E8C584C074F for <9front@9front.org>; Tue, 25 Oct 2022 18:33:33 +0000 (UTC) Received: from localhost (quark.home.arpa [local]) by quark.home.arpa (OpenSMTPD) with ESMTPA id 418e7cc5 for <9front@9front.org>; Tue, 25 Oct 2022 14:33:32 -0400 (EDT) Date: Tue, 25 Oct 2022 14:33:32 -0400 From: Josiah Frentsos To: 9front@9front.org Message-ID: Mail-Followup-To: 9front@9front.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: element-oriented base Subject: [9front] cwfs: Add some missing dashes Reply-To: 9front@9front.org Precedence: bulk diff f2eef8e077d3a9d7755c18ddf26722eaa3ab81b8 uncommitted --- a/sys/src/cmd/cwfs/con.c +++ b/sys/src/cmd/cwfs/con.c @@ -816,10 +816,10 @@ cmd_install("who", "[user ...] -- print attaches", cmd_who); cmd_install("hangup", "chan -- clunk files", cmd_hangup); cmd_install("printconf", "-- print configuration", cmd_printconf); - cmd_install("noauth", "toggle noauth flag", cmd_noauth); - cmd_install("nonone", "toggle nonone flag", cmd_nonone); - cmd_install("noattach", "toggle noattach flag", cmd_noattach); - cmd_install("files", "report on files structure", cmd_files); + cmd_install("noauth", "-- toggle noauth flag", cmd_noauth); + cmd_install("nonone", "-- toggle nonone flag", cmd_nonone); + cmd_install("noattach", "-- toggle noattach flag", cmd_noattach); + cmd_install("files", "-- report on files structure", cmd_files); chatflag = flag_install("chat", "-- verbose"); errorflag = flag_install("error", "-- on errors");