From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <18aa645e56adc2992631a78ed709bdc0@sdgm.net> To: 9fans@cse.psu.edu From: cross@sdgm.net MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] A small fix for nedmail. Date: Sun, 27 Jul 2003 13:16:27 -0400 Topicbox-Message-UUID: 060b4836-eacc-11e9-9e20-41e7f4b1d025 The help information in nedmail had a typo, and said `x' would both exit without synching, and synchronize the mailbox (really the job of `y'). Here's a context diff. - Dan C. brahma% ape/diff -c /n/sources/plan9/sys/src/cmd/upas/ned/nedmail.c nedmail.c *** /n/sources/plan9/sys/src/cmd/upas/ned/nedmail.c Sun Jun 15 14:52:38 2003 --- nedmail.c Sun Jul 27 13:12:24 2003 *************** *** 123,129 **** { "u", 0, ucmd, "u remove deletion mark" }, { "w", 1, wcmd, "w file store message contents as file" }, { "x", 0, xcmd, "x exit without flushing deleted messages" }, ! { "y", 0, ycmd, "x synchronize with mail box" }, { "=", 1, eqcmd, "= print current message number" }, { "|", 1, pipecmd, "|cmd pipe message body to a command" }, { "||", 1, rpipecmd, "|cmd pipe raw message to a command" }, --- 123,129 ---- { "u", 0, ucmd, "u remove deletion mark" }, { "w", 1, wcmd, "w file store message contents as file" }, { "x", 0, xcmd, "x exit without flushing deleted messages" }, ! { "y", 0, ycmd, "y synchronize with mail box" }, { "=", 1, eqcmd, "= print current message number" }, { "|", 1, pipecmd, "|cmd pipe message body to a command" }, { "||", 1, rpipecmd, "|cmd pipe raw message to a command" }, brahma%