]> git.marmaro.de Git - mmh/commitdiff
Renamed -version switch to -Version to remove the conflict with -verbose.
authormarkus schnalke <meillo@marmaro.de>
Tue, 1 May 2012 13:01:36 +0000 (15:01 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 1 May 2012 13:13:14 +0000 (15:13 +0200)
Now, `mhlist -V' prints the version and `mhlist -v' lists verbosely.
There are only a few switches left that conflict on the first character,
apart from the inverted (no*) variants.

86 files changed:
docs/COMPLETION-BASH
docs/README.manpages
man/ali.man1
man/anno.man1
man/ap.man8
man/burst.man1
man/comp.man1
man/dist.man1
man/dp.man8
man/flist.man1
man/fmtdump.man8
man/folder.man1
man/forw.man1
man/inc.man1
man/mark.man1
man/mhbuild.man1
man/mhl.man1
man/mhlist.man1
man/mhmail.man1
man/mhparam.man1
man/mhpath.man1
man/mhstore.man1
man/mmh-intro.man7
man/mmh.man1
man/mmhwrap.man1
man/msgchk.man1
man/new.man1
man/packf.man1
man/pick.man1
man/prompter.man1
man/rcvdist.man1
man/rcvpack.man1
man/rcvstore.man1
man/refile.man1
man/repl.man1
man/rmf.man1
man/rmm.man1
man/scan.man1
man/send.man1
man/show.man1
man/slocal.man1
man/sortm.man1
man/spost.man8
man/whatnow.man1
man/whom.man
uip/ali.c
uip/anno.c
uip/ap.c
uip/burst.c
uip/comp.c
uip/dist.c
uip/dp.c
uip/flist.c
uip/fmtdump.c
uip/folder.c
uip/forw.c
uip/inc.c
uip/mark.c
uip/mhbuild.c
uip/mhl.c
uip/mhlist.c
uip/mhmail.c
uip/mhparam.c
uip/mhpath.c
uip/mhshow.c
uip/mhstore.c
uip/mhtest.c
uip/mmh.sh
uip/msgchk.c
uip/new.c
uip/packf.c
uip/pick.c
uip/prompter.c
uip/rcvdist.c
uip/rcvpack.c
uip/rcvstore.c
uip/refile.c
uip/repl.c
uip/rmf.c
uip/rmm.c
uip/scan.c
uip/send.c
uip/slocal.c
uip/sortm.c
uip/spost.c
uip/whatnow.c

index c26783a6a285d0253016ee912b423b5d907d083c..da20671828b832a708c19d7f710b5bbd75751dd6 100644 (file)
@@ -37,81 +37,81 @@ _nmh()
         ali )
             # no sequences or messages
             options=(-alias -list -nolist -normalize -nonormalize -user
-                    -nouser -version -help)
+                    -nouser -Version -help)
             ;;
         burst )
             options=(-inplace -noinplace -quiet -noquiet -verbose
-                    -noverbose -version -help)
+                    -noverbose -Version -help)
             ;;
         comp )
             options=(-form -use -nouse
                     -editor -noedit -whatnowproc
-                    -version -help )
+                    -Version -help )
            ;;
         flist* )
             options=(-sequence -all -noall -showzero -noshowzero
-                    -recurse -norecurse -fast -nofast -alpha -noalpha -version
+                    -recurse -norecurse -fast -nofast -alpha -noalpha -Version
                     -help)
             ;;
         folder* )
             options=(-all -noall -create -nocreate -fast -nofast -header
                     -noheader -recurse -norecurse -total -nototal -list -nolist
                     -push -pop -pack -nopack -print -verbose -noverbose
-                    -version -help)
+                    -Version -help)
             ;;
         forw )
             options=(-annotate -noannotate -form
                     -editor -noedit -whatnowproc -build
-                    -version -help)
+                    -Version -help)
             ;;
         inc )
             options=(-audit -noaudit -changecur -nochangecur -form
                     -file -silent -nosilent -truncate -notruncate -width
-                    -version -help)
+                    -Version -help)
             ;;
         mark )
             options=(-sequence -add -delete -list -public -nopublic
-                    -zero -nozero -version -help)
+                    -zero -nozero -Version -help)
             ;;
         packf )
-            options=(-file -version -help)
+            options=(-file -Version -help)
             ;;
         pick )
             options=(-and -or -not -lbrace -rbrace --component -cc
                     -date -from -search -subject -to -after -before -datefield
                     -sequence -public -nopublic -zero -nozero -list -nolist
-                    -version -help)
+                    -Version -help)
             ;;
         refile )
-            options=(-link -nolink -src -file -version -help)
+            options=(-link -nolink -src -file -Version -help)
             ;;
         repl )
             options=(-annotate -noannotate -group -nogroup -cc
                     -nocc -query -noquery -form -filter -nofilter
                     -mime -nomime -editor -noedit -whatnowproc
-                    -build -file -version -help)
+                    -build -file -Version -help)
             ;;
         rmf )
-            options=(-interactive -nointeractive -version -help)
+            options=(-interactive -nointeractive -Version -help)
             ;;
         rmm )
-            options=(-link -nolink -version -help)
+            options=(-link -nolink -Version -help)
             ;;
         scan )
             options=(-form -header -noheader
-                    -width -file -version -help )
+                    -width -file -Version -help )
             ;;
         show )
         next )
         prev )
-            options=(-file -part -type -form -version -help)
+            options=(-file -part -type -form -Version -help)
             ;;
         sortm )
             options=(-datefield -textfield -notextfield -limit -nolimit
-                    -verbose -noverbose -version -help)
+                    -verbose -noverbose -Version -help)
             ;;
         * )
-            options=(-help -version -seq)
+            options=(-help -Version -seq)
             ;;
         esac
         ;;
index 5e1004b3c00a1681bef8896286c104da2d51bb45..a6edee8d1bde64ff9667e76438a203c8b75a290f 100644 (file)
@@ -16,7 +16,7 @@ comp \- compose a message
 .RB [ \-form
 .IR formfile ]
 .RB [ \-use " | " \-nouse ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .SH DESCRIPTION
 .B Comp
@@ -105,7 +105,7 @@ SYNPOSIS section
 
                .RI [ +folder ]              <---- parameter
                .RI [ msgs ]                 <---- parameter
-               .RB [ \-version ]            <---- flag
+               .RB [ \-Version ]            <---- flag
                .RB [ \-editor               <---- flag with
                .IR editor ]                       parameter
                .RB [ \-use " | " \-nouse ]  <---- exclusive parameters
index 480c363165abc329719a532805d974846acc5ea1..55ec128e548d867d48ad8dd6ff2c7bb2fada7c70 100644 (file)
@@ -13,7 +13,7 @@ ali \- list mail aliases
 .RB [ \-list " | " \-nolist ]
 .RB [ \-normalize " | " \-nonormalize ]
 .RB [ \-user " | " \-nouser ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .RI [ aliases " ...]"
 .ad
index e35899e6975bb353d7f85acfa045e07f5833cfc4..07bd32c639d17eff7c11acca1c8fb4f0b9c0596c 100644 (file)
@@ -17,7 +17,7 @@ anno \- annotate messages
 .RB [ \-append ]
 .RB [ \-date " | " \-nodate ]
 .RB [ \-preserve " | " \-nopreserve ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .HP
 .B anno
@@ -31,7 +31,7 @@ anno \- annotate messages
 .RB [ \-number
 .IR num " | all ]
 .RB [ \-preserve " | " \-nopreserve ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .HP
 .B anno
@@ -41,7 +41,7 @@ anno \- annotate messages
 .RB [ \-component
 .IR field ]
 .RB [ \-number ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 3e14e97104b94091938e068a7c24681ba196987e..c96770ce620c6a9dd5fad39e480f9a02f096710d 100644 (file)
@@ -11,7 +11,7 @@ ap \- parse addresses 822-style
 .RB [ \-form
 .IR formatfile ]
 .RB [ \-normalize " | " \-nonormalize ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .I addrs
 \&...
index aba045768ccc100ebaccffe4089b7617f55a1f81..36308a85c166abad056f2c916e6b4dc0dba6c7cb 100644 (file)
@@ -11,7 +11,7 @@ burst \- explode digests into messages
 .RI [ +folder ]
 .RI [ msgs ]
 .RB [ \-verbose " | " \-noverbose ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index bc723a91bf68d930e1a22dc65d8664c2dc158c62..da522b9a2c7dde82f3fbc7c297edbe4b009f879b 100644 (file)
@@ -17,7 +17,7 @@ comp \- compose a message
 .IR editor ]
 .RB [ \-whatnowproc
 .IR program ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index df4173aa674716778ad7b1f8ba32add910c25ed6..ebf2216faf1d8d1db4ed3862467af83bffc38468 100644 (file)
@@ -17,7 +17,7 @@ dist \- redistribute a message to additional addresses
 .IR editor ]
 .RB [ \-whatnowproc
 .IR program ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index e0080cfdf6d25edb9f06344873daaec47ad9981a..b19c50b951c2006bc11df8c53db458d73360f451 100644 (file)
@@ -10,7 +10,7 @@ dp \- parse dates 822-style
 .B %libdir%/dp
 .RB [ \-form
 .IR formatfile ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .I dates
 \&...
index f505ba8d709c9ac42aff5b089e15d47d7682f920..fc1be7a812714fd8e301e3941a52c737c101a9f1 100644 (file)
@@ -21,7 +21,7 @@ flist, flists \- list the number of messages in given sequence(s)
 .RB [ \-recurse " | " \-norecurse ]
 .RB [ \-fast " | " \-nofast ]
 .RB [ \-alpha " | " \-noalpha ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .PP
 .HP 5
index a39b4dbde6b1be3b1a1833e8e4e24bffd4e7fa0d..6156c395fb0c55ac7eea447c3a4ffa59a64b2333 100644 (file)
@@ -10,7 +10,7 @@ fmtdump \- decode nmh format files
 .B %libdir%/fmtdump
 .RB [ \-form
 .IR formatfile ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index e162a8e34fbc69bbd603f6b5d7b2c7e6528b116b..d6bfbb432ce9f3bfbf109e1016da035df61f11b0 100644 (file)
@@ -20,7 +20,7 @@ folder, folders \- set/list current folder/message
 .RB [ \-pack " | " \-nopack ]
 .RB [ \-print ]
 .RB [ \-verbose " | " \-noverbose ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .PP
 .HP 5
index 2a2a8f3f09fb5384133bdedcccd9f0689c5b5a99..073d904474d49c052e70ada1df45df942969c2f7 100644 (file)
@@ -18,7 +18,7 @@ forw \- forward messages
 .RB [ \-whatnowproc
 .IR program ]
 .RB [ \-build ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .PP
 .HP 5
@@ -33,7 +33,7 @@ forw \- forward messages
 .IR number ]
 [other\ switches\ for
 .BR forw ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 334bcd709fb3be15cccd9fa79b2b5571b1ce5bb0..fc74195f556bca00d8b9f161d8eaef0d58bfa916 100644 (file)
@@ -21,7 +21,7 @@ inc \- incorporate new mail
 .RB [ \-truncate " | " \-notruncate ]
 .RB [ \-width
 .IR columns ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index b0b93cad66db8ed61213553294b951f8603cf7b6..eeda4380094683a703168daaf6f75144341dd650 100644 (file)
@@ -17,7 +17,7 @@ mark \- manipulate message sequences
 .RB [ \-list ]
 .RB [ \-public " | " \-nopublic ]
 .RB [ \-zero " | " \-nozero ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index bb5f2d3b566d404de4e9a899f4fd86633c8b5a68..1322967f338747ffb28848e051de50b0e8492dc7 100644 (file)
@@ -10,7 +10,7 @@ mhbuild \- translate MIME composition draft
 .B mhbuild
 .I file
 .RB [ \-verbose " | " \-noverbose ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 95c5405ac93921f444228698facb1378bdb73700..909db5cb020ccdcb46bf15e9c5438cbf5305a1d4 100644 (file)
@@ -14,7 +14,7 @@ mhl \- produce formatted listings of nmh messages
 .IR columns ]
 .RI [ files
 .IR \&... ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index a94a7df1db1ec9c34f79281477bd387e086bc298..351999ff06dc885d3280384f61ae14ce076d6102 100644 (file)
@@ -19,7 +19,7 @@ mhlist \- list information about MIME messages
 .IR content ]
 \&...
 .RB [ \-verbose " | " \-noverbose ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index f244ae0eeeb56f1d230ce34b1124f172dfe3cfef..ce298d7f740d43867282a90617476b7a0c869e27 100644 (file)
@@ -17,7 +17,7 @@ mhmail \- send mail
 .IR addr ]
 .RB [ \-subject
 .IR subject ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 6d7a4b065ec212dac3fe48764770906d2e356ec0..11a1346f799968bef90f8d228b810bdc39b9b4e4 100644 (file)
@@ -12,7 +12,7 @@ mhparam \- print nmh profile and context components
 .RB [ \-all ]
 .RB [ \-component " | " \-nocomponent ]
 .RB [ \-debug ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 3cdcf50145f768f5ed0f35fe1e388fbc3b92549c..ecc93396816c6a61410fa5c9dd4908e203bddce2 100644 (file)
@@ -10,7 +10,7 @@ mhpath \- print full pathnames of nmh messages and folders
 .B mhpath
 .RI [ +folder ]
 .RI [ msgs ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index ea3703771172876eb81f76d9c885e3d56d029002..e92a82f2204187d03e2b424d4d735926da9fc452 100644 (file)
@@ -19,7 +19,7 @@ mhstore \- store contents of MIME messages into files
 .IR content ]
 \&...
 .RB [ \-auto " | " \-noauto ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 8e408e3125463255cc11b81afb870e6720905904..212f392c4d74fe9fa67d1f0f839a933c6f78aed5 100644 (file)
@@ -280,7 +280,7 @@ If you encounter problems with an
 program, please report them.
 When doing this, include the version information, which you can obtain
 by invoking the program with the
-.B \-version
+.B \-Version
 switch.
 .PP
 Send bug reports and suggestions to
index 82117deb4b8ef9e20b0960a41481d5690bb7aa0d..0069435a08e59ca71d352d4ceb0161ead1354b4a 100644 (file)
@@ -9,7 +9,7 @@ mmh \- initialize the mmh environment
 .na
 .B mmh
 .RB [ \-check ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index deef4ce6ee97c73fd62535644c4a8d9e036f1fea..1bec9c80a875d40aa0d6442fb0d03af33320137f 100644 (file)
@@ -56,7 +56,7 @@ Usage: scan [+folder] [msgs] [switches]
   \-form formatfile
   \-width columns
   \-(file) file
-  \-version
+  \-Version
   \-help
 
 % m scan f
index 1b58ee5c311a0eaf82c612563e29bf10bf34fb10..ff41dd01246ca48ddf3286b597de24799b6938bf 100644 (file)
@@ -15,7 +15,7 @@ all/mail/nomail ]
 all/mail/nomail ]
 .RI [ users
 \&... ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 8bfc5d8d3cd4dd8f9f498f7cb2add699ca0c6e3b..cfa7e8f5bcec59142ce58a54c2ff73c998e7359a 100644 (file)
@@ -21,7 +21,7 @@ unseen \- scan new messages in all folders with new messages
 .IR mode ]
 .RB [ \-folders
 .IR foldersfile ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .PP
 .HP 5
index 916db9e1aad0ec18ab7e2d951a24b4f5d45c153e..398d49f8618f17a58493706a02825fe2b57d56ea 100644 (file)
@@ -10,7 +10,7 @@ packf \- pack messages in nmh folder into a single mbox file
 .B packf
 .RI [ +folder ]
 .RI [ msgs ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index e9d1941c5de9b7229d03431531410b3f95710127..4fdac78530e0fd09c96622bfa940d6d016e7a5a9 100644 (file)
@@ -45,7 +45,7 @@ pick \- search for messages by content
 .RB [ \-public " | " \-nopublic ]
 .RB [ \-zero " | " \-nozero ]
 .RB [ \-list " | " \-nolist ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .PP
index 9f183e37282b88b8063e905af76a413fcfd4df82..f83a9dbbc3a7a2dd983a43f99e9e5b1b8ebdec14 100644 (file)
@@ -16,7 +16,7 @@ prompter \- prompting editor front-end for nmh
 .RB [ \-rapid " | " \-norapid ]
 .RB [ \-doteof " | " \-nodoteof ]
 .I file
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index d6723c82988805d2451d2267c03d2738ae36046c..a8bacc285df5d17bf3dd5c06f216178848405284 100644 (file)
@@ -13,7 +13,7 @@ rcvdist \- asynchronously redistribute new mail
 [switches\ for
 .BR spost ]
 .IR RECIPIENT ...
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 290f5ccba3238d4ea6f7fc33ff476bb3f34a765f..e4447093703821b55c9ebdadf3d3c679fd314902 100644 (file)
@@ -9,7 +9,7 @@ rcvpack \- append message to mbox file
 .na
 .B rcvpack
 .RI [ file ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 1fff18f0029482edfecbfcb638a4dbfe222789df..26bd690fa6814dac7801e6392ac41470e3d080a5 100644 (file)
@@ -16,7 +16,7 @@ rcvstore \- asynchronously incorporate mail into a folder
 .I name
 \&...]
 .RB [ \-public " | " \-nopublic ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 5e837f5bf368b956b48550b268199f7614423cb4..eaf8c095a5433b8b1f8ad09b8cb62669498f4258 100644 (file)
@@ -16,7 +16,7 @@ refile \- file message in other folders
 .IR file ]
 .I +folder1
 \&...
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 286ee9c0b9a0d56fa77de963b796bb012df423af..c1eb1d8938b77a8c773d8fa3e4291e5b9b258696 100644 (file)
@@ -30,7 +30,7 @@ all/to/cc/me]
 .RB [ \-build ]
 .RB [ \-file
 .IR msgfile ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index ee2945108cba4e7601739379da91074322383100..fa26c0107c490ff7ed9dac04575e4814e3d8d722 100644 (file)
@@ -10,7 +10,7 @@ rmf \- remove an nmh folder
 .B rmf
 .RI [ +folder ]
 .RB [ \-interactive " | " \-nointeractive ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index a2717130e4ca93cf13d091aff23b319672ab1ded..07d6cc3e4e87c8ab723bf856f573d423a4377280 100644 (file)
@@ -11,7 +11,7 @@ rmm \- remove messages
 .RI [ +folder ]
 .RI [ msgs ]
 .RB [ \-unlink " | " \-nounlink ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 24ced2ce3221454810789a0e6c248df1337b5e89..73032794a9f853ecb19ced96121b51342f953625 100644 (file)
@@ -16,7 +16,7 @@ scan \- produce a one line per message scan listing
 .IR columns ]
 .RB [ \-file
 .IR filename ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index ef0695ee8ed2bcb584f1074f85175b386cc9de33..4292a2d43ddfe7df0bab26f710c2f986f1b8a2d3 100644 (file)
@@ -14,7 +14,7 @@ send \- send a message
 .RB [ \-watch " | " \-nowatch ]
 .RB [ msg
 \&...]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 8e34f714c58358348d42778c9e014f167cafdcf8..1fcfacd6a8e8b28ec9b66c05e3074f64af5f4ef5 100644 (file)
@@ -24,7 +24,7 @@ prev \- show the previous message
 \&...
 .RB [ \-form
 .IR formfile ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .PP
 .HP 5
index 7d6495249a096bd87af971c6bcc2c8bf0882dd4c..914fd7b51a5f6b53769cf6e63219cb3e72ea23ed 100644 (file)
@@ -26,7 +26,7 @@ slocal \- asynchronously filter and deliver new mail
 .IR deliveryfile ]
 .RB [ \-verbose " | " \-noverbose ]
 .RB [ \-debug ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 8932d64666ecc86b0f1aa812fc45b7051165f888..582e6ff5d2d75731dffd768a0b7e9ef2d59387f7 100644 (file)
@@ -19,7 +19,7 @@ sortm \- sort messages
 .IR days ]
 .RB [ \-nolimit ]
 .RB [ \-verbose " | " \-noverbose ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 1e0429dde040529bbfe7b01e3c907992255bdc11..695cd94de6da32f1c967d29ab3cf0a657b6933ef 100644 (file)
@@ -16,7 +16,7 @@ spost \- feed a message to sendmail
 .RB [ \-verbose " | " \-noverbose ]
 .RB [ \-watch " | " \-nowatch ]
 .I file
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index a181ccaa077bf6315f5dd21e3335709e14708bbd..c11da838510e87589a34a5c87fc1f2aeb5b62fc2 100644 (file)
@@ -13,7 +13,7 @@ whatnow \- prompting front-end for sending messages
 .RB [ \-prompt
 .IR string ]
 .RI [ file ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index 856c2a09cc7287d964af814b8597f9c598b023d7..10ae7d0b5adb259261de01ed3296d13bfb69219f 100644 (file)
@@ -18,7 +18,7 @@ whom \- report to whom a message would go
 .IR msg ]
 .RB [ \-nodraftfolder ]
 .RI [ file ]
-.RB [ \-version ]
+.RB [ \-Version ]
 .RB [ \-help ]
 .ad
 .SH DESCRIPTION
index df29930c2d6265be6c357a2a7906f6507b69fb71..73f716685b6f68002a1c68dff8f35922c4deb15d 100644 (file)
--- a/uip/ali.c
+++ b/uip/ali.c
@@ -34,7 +34,7 @@ static struct swit switches[] = {
 #define NUSERSW    7
        { "nouser", 0 },
 #define VERSIONSW  8
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW     9
        { "help", 0 },
        { NULL, 0 }
index 34d301b5eb5d28933655f83df2c8fb6051e9033a..7ede7e0558531b3ca489a2ff14fb76bef6d1a72b 100644 (file)
@@ -30,7 +30,7 @@ static struct swit switches[] = {
 #define TEXTSW 3
        { "text body", 0 },
 #define VERSIONSW 4
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW 5
        { "help", 0 },
 #define LISTSW 6
index 623e0030ac3f0ac143d2c1adb4dd3f9e1917b212..3bb2bf0b606b8897ce22cf021ec18937a71510ca 100644 (file)
--- a/uip/ap.c
+++ b/uip/ap.c
@@ -22,7 +22,7 @@ static struct swit switches[] = {
 #define NNORMSW 2
        { "nonormalize", 0 },
 #define VERSIONSW 3
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW 4
        { "help", 0 },
        { NULL, 0 }
index 23b737ecd52b11710e9e390a53f93d4f6fc7a63a..8d6e69b454363112c6802fb3e33f4b46148c54b1 100644 (file)
@@ -14,7 +14,7 @@ static struct swit switches[] = {
 #define NVERBSW 1
        { "noverbose", 0 },
 #define VERSIONSW 2
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW 3
        { "help", 0 },
        { NULL, 0 }
index 5c088a83fc4fa32955e75b70e045ecd9263e3500..1c45a982d0743a48fb71056fd2aa6807e95e3286 100644 (file)
@@ -22,7 +22,7 @@ static struct swit switches[] = {
 #define WHATSW  4
        { "whatnowproc program", 0 },
 #define VERSIONSW  5
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  6
        { "help", 0 },
        { NULL, 0 }
index 57efc4e3bdbc4cc5d2410b2bd411099d0663f1a1..3db8cfc068c54bf46b2bbaee6060ed23736ba5fa 100644 (file)
@@ -22,7 +22,7 @@ static struct swit switches[] = {
 #define WHATSW  4
        { "whatnowproc program", 0 },
 #define VERSIONSW  5
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  6
        { "help", 0 },
        { NULL, 0 }
index d64a0b9e5c625e92718727ceaa685979ce37e48e..aee4b2929e276bd0032f6db653cc6fed064ded06 100644 (file)
--- a/uip/dp.c
+++ b/uip/dp.c
@@ -18,7 +18,7 @@ static struct swit switches[] = {
 #define FORMSW  0
        { "form formatfile", 0 },
 #define VERSIONSW  1
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  2
        { "help", 0 },
        { NULL, 0 }
index 9302a8a395aef9376cc7a40a99954eea38b9a2e1..71ae8e85aba5e26e51c9d1a0ff9e861c286d39ff 100644 (file)
@@ -52,7 +52,7 @@ static struct swit switches[] = {
 #define NOTOTALSW  12
        { "nototal", -7 },
 #define VERSIONSW  13
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  14
        { "help", 0 },
        { NULL, 0 }
index b59cf5c79645b7b4de8b3ee64b46dcb09217b9f3..fc94247c1880021d8e8147fc21121a35ec361685 100644 (file)
@@ -15,7 +15,7 @@ static struct swit switches[] = {
 #define FORMSW  0
        { "form formatfile", 0 },
 #define VERSIONSW  1
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  2
        { "help", 0 },
        { NULL, 0 }
index cc4005937d135266d08dadc66cc36fc5fc420611..584bb768c0e19d4b6d1703a4140e139ab9f25e54 100644 (file)
@@ -55,7 +55,7 @@ static struct swit switches[] = {
 #define POPSW  19
        { "pop", 0 },
 #define VERSIONSW  20
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  21
        { "help", 0 },
        { NULL, 0 }
index adf0faaa2158551251441d69463095fb03a55d22..b1148b0946ab31999c0d8a503e3b1c182dd4e3b8 100644 (file)
@@ -34,7 +34,7 @@ static struct swit switches[] = {
 #define WHATSW  7
        { "whatnowproc program", 0 },
 #define VERSIONSW  8
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  9
        { "help", 0 },
 #define BILDSW  12
index 2bdb9278e532f9d081bedb7483094f14a057d05f..e1557847060a2178e6b1fd2e858c3a4924c9165d 100644 (file)
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -61,7 +61,7 @@ static struct swit switches[] = {
 #define WIDTHSW  10
        { "width columns", 0 },
 #define VERSIONSW  11
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  12
        { "help", 0 },
        { NULL, 0 },
index 1917e84f4f41cc6407a4b6fcae0d34513d1247b2..3818c29babbef376f0229edf2cf7a86761663f58 100644 (file)
@@ -29,7 +29,7 @@ static struct swit switches[] = {
 #define NZEROSW  7
        { "nozero", 0 },
 #define VERSIONSW  8
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  9
        { "help", 0 },
 #define DEBUGSW  10
index 67b2e0e8112925b9e8538c321417b0787483cae0..12e654897dd30147b3383d95d1d38afa97f710ef 100644 (file)
@@ -34,7 +34,7 @@ static struct swit switches[] = {
 #define NVERBSW  1
        { "noverbose", 0 },
 #define VERSIONSW  2
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  3
        { "help", 0 },
 #define DEBUGSW  4
index 2c1d907b775f23164135747b2ed8d6ddacca5789..328db8fc8d28ba6245b36322f459a7fad1e721e5 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -48,7 +48,7 @@ static struct swit mhlswitches[] = {
 #define SLEEPSW  2
        { "sleep seconds",  0 },
 #define VERSIONSW  3
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  4
        { "help", 0 },
 #define FORW1SW  5
index dd954a06ca668e712d9f34e3ad2cf5f209a2216a..7129ce5a973343ef092060916ccc5f0925c9dad6 100644 (file)
@@ -28,7 +28,7 @@ static struct swit switches[] = {
 #define TYPESW  4
        { "type content", 0 },
 #define VERSIONSW  5
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  6
        { "help", 0 },
 #define DEBUGSW  7
index 2ab9cfd96b0c14fae712f8d495730c474e0ebee8..6506b7d2a5c97e1818e622b91b564909dcbc694a 100644 (file)
@@ -23,7 +23,7 @@ static struct swit switches[] = {
 #define SUBJSW  3
        { "subject text", 0 },
 #define VERSIONSW  4
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  5
        { "help", 0 },
 #define RESNDSW  6
index 664e5d087723ff55e659c2f42d5e507c78728232..6c6fedbc1b3ce9ea68b62090991aa41238efef3e 100644 (file)
@@ -19,7 +19,7 @@ static struct swit switches[] = {
 #define ALLSW  2
        { "all", 0 },
 #define VERSIONSW 3
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  4
        { "help", 0 },
 #define DEBUGSW   5
index 5c0de0577d7c4c9e97cb508000109c14adf5bd01..605d13c37a70abaaa3218bee6cb1f8648b5d9328 100644 (file)
@@ -11,7 +11,7 @@
 
 static struct swit switches[] = {
 #define VERSIONSW 0
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  1
        { "help", 0 },
        { NULL, 0 }
index 54aa78d9f051c6cbd75d8fb7c8a95094b4ec7935..1ee5c82f5198a0f34a5276d99b23ef1195a8c519 100644 (file)
@@ -30,7 +30,7 @@ static struct swit switches[] = {
 #define TYPESW  5
        { "type content", 0 },
 #define VERSIONSW  6
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  7
        { "help", 0 },
 #define DEBUGSW  8
index f4d664d280c78819fcabf7a70e9e151bf15e894b..259acf3902d6c7ed9d1279de897d19a4e21e65e6 100644 (file)
@@ -29,7 +29,7 @@ static struct swit switches[] = {
 #define TYPESW  4
        { "type content", 0 },
 #define VERSIONSW  5
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  6
        { "help", 0 },
 #define DEBUGSW  7
index 33b8026eeb3dac84af838df211fd201b90dd32d8..871270ee672a80a798ccde528dfe9188652986d8 100644 (file)
@@ -30,7 +30,7 @@ static struct swit switches[] = {
 #define TYPESW  5
        { "type content", 0 },
 #define VERSIONSW  6
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  7
        { "help", 0 },
 #define DEBUGSW  8
index 6e93eb19194cd1c1f2e18fbbe6af4f7b4a6dd4f6..68cf1201d1da7a3400a33a2aa449cfa0ba725206 100755 (executable)
@@ -31,7 +31,7 @@ while [ $# -ge 1 ] ; do
                ;;
        -v*)
                echo "mmh has no own version number, thus this instead:"
-               folder -version
+               folder -Version
                exit 0
                ;;
        -h*|*)
index ee812268337baee7e057a5f6670f6685ce8e29de..dfbdd69e1df828fa726fd31737ea042cdf9d640f 100644 (file)
@@ -20,7 +20,7 @@ static struct swit switches[] = {
 #define NNOTESW  3
        { "nonotify type", 0 },
 #define VERSIONSW  4
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  5
        { "help", 0 },
        { NULL, 0 },
index dab17adab4d63ab81e71b29d9d906b8b230e5bea..de3c0be40c8e92c8ab00f53024df2d91af1adb6f 100644 (file)
--- a/uip/new.c
+++ b/uip/new.c
@@ -26,7 +26,7 @@ static struct swit switches[] = {
 #define FOLDERSSW 1
        { "folders", 1 },
 #define VERSIONSW 2
-       { "version", 1 },
+       { "Version", 1 },
 #define HELPSW 3
        { "help", 1 },
        { NULL, 0 }
index 23ee33543ad7b860b223392343590aa7d1fdbfec..b565c164e25cd6d32646d2582d794674972bb03d 100644 (file)
@@ -14,7 +14,7 @@
 
 static struct swit switches[] = {
 #define VERSIONSW  0
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  1
        { "help", 0 },
        { NULL, 0 }
index 0f0dda3be94b09dbb915722ab1c73dd7cdfddd57..d8edbcaa9b8b1c7c007359f998b735a9073ffa60 100644 (file)
@@ -61,7 +61,7 @@ static struct swit switches[] = {
 #define NLISTSW  21
        { "nolist", 0 },
 #define VERSIONSW  22
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  23
        { "help", 0 },
        { NULL, 0 }
index 6c780d4a19d40fa6f5aa5c373df9ede49a9acdfd..6db0455a58024838d6412c3ea06fbe84da78d753 100644 (file)
@@ -47,7 +47,7 @@ static struct swit switches[] = {
 #define NDOTSW  9
        { "nodoteof", 0 },
 #define VERSIONSW 10
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  11
        { "help", 0 },
        { NULL, 0 }
index ac1914978348471a5371073234a9c0f5c043e2d4..d409b5cb59de4532ce5748d25ad3d6724d24b961 100644 (file)
@@ -16,7 +16,7 @@ static struct swit switches[] = {
 #define FORMSW  0
        { "form formfile",  4 },
 #define VERSIONSW  1
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  2
        { "help", 0 },
        { NULL, 0 }
index e00e1fd58639c8998ecdb48ca7b5297c49e96148..fe98a449e01054f36b46611f9232d93385877b06 100644 (file)
@@ -13,7 +13,7 @@
 
 static struct swit switches[] = {
 #define VERSIONSW  0
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  1
        { "help", 0 },
        { NULL, 0 }
index fc98b4ac11b9016fca32672154fad56243adacf1..5602dbc963e2840fb4393c57c573f79df32cde50 100644 (file)
@@ -32,7 +32,7 @@ static struct swit switches[] = {
 #define SEQSW  8
        { "sequence name", 0 },
 #define VERSIONSW  9
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  10
        { "help", 0 },
        { NULL, 0 }
index 2fe25b496fe972f09ad6885a044e5efdeba877ab..e4433bd91dde97f9494f81757f5ecb143f109a46 100644 (file)
@@ -22,7 +22,7 @@ static struct swit switches[] = {
 #define FILESW  3
        { "file file", 0 },
 #define VERSIONSW  4
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  5
        { "help", 0 },
        { NULL, 0 }
index b29ae9fd7a0dcd49759c852f074fad2496c54534..f8af5caaf68b8d68c4298c5b777ae6a35571105d 100644 (file)
@@ -46,7 +46,7 @@ static struct swit switches[] = {
 #define WHATSW  14
        { "whatnowproc program", 0 },
 #define VERSIONSW  15
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  16
        { "help", 0 },
 #define FILESW  17
index 77e05838dc535ded068b25805a7e2aca0e95b7e9..b9c1969b9adb9b9693d6e1f50e7e0705c62a8b05 100644 (file)
--- a/uip/rmf.c
+++ b/uip/rmf.c
@@ -14,7 +14,7 @@ static struct swit switches[] = {
 #define NINTRSW  1
        { "nointeractive", 0 },
 #define VERSIONSW  2
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  3
        { "help", 0 },
        { NULL, 0 }
index ecc9b9b425dacd929b7c8d22f4dc9d4722025dcb..0316c2c654a43dc92104290af2f0f98c9d03a8b0 100644 (file)
--- a/uip/rmm.c
+++ b/uip/rmm.c
@@ -15,7 +15,7 @@ static struct swit switches[] = {
 #define NUNLINKSW  1
        { "nounlink", 0 },
 #define VERSIONSW  2
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  3
        { "help", 0 },
        { NULL, 0 }
index 5cdd5b9665e1990a2189f9b133bb2ecbeef0800c..085cc7fa7ea3c54a5b206356520bd53277604074 100644 (file)
@@ -21,7 +21,7 @@ static struct swit switches[] = {
 #define FILESW  2
        { "file file", 4 },
 #define VERSIONSW 3
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  4
        { "help", 0 },
        { NULL, 0 }
index 6be46db185bc41ecac3be69e8337534c2f2b9a35..84e05dfb31386d64a6d1b312c8156e945bbba8ef 100644 (file)
@@ -66,7 +66,7 @@ static struct swit switches[] = {
 #define NWATCSW  5
        { "nowatch", 0 },
 #define VERSIONSW  6
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  7
        { "help", 0 },
        { NULL, 0 }
index 765bcbd621cde808dc44353f28b08b92b19210ad..bd6b0a2714dc49c5e0b2a904bb68be518cb1de63 100644 (file)
@@ -63,7 +63,7 @@ static struct swit switches[] = {
 #define DEBUGSW  10
        { "debug", 0 },
 #define VERSIONSW  11
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  12
        { "help", 0 },
        { NULL, 0 }
index 6ba8a9c2adb54a180530fb4fa60377ea1a42029a..d7dae6127be577772cd8c51b776749444370d20c 100644 (file)
@@ -28,7 +28,7 @@ static struct swit switches[] = {
 #define NVERBSW  7
         { "noverbose", 0 },
 #define VERSIONSW  8
-        { "version", 0 },
+        { "Version", 0 },
 #define HELPSW  9
         { "help", 0 },
         { NULL, 0 }
index 093bad56436efd426e7114a1d0b9f12ca85f48a2..f3630d25edea9272429ad9a732f1fa62a42076d1 100644 (file)
@@ -33,7 +33,7 @@ struct swit switches[] = {
 #define NALIASW  5
        { "noalias", 0 },
 #define VERSIONSW  6
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  7
        { "help", 0 },
 #define DEBUGSW  8
index f26dcb7c00e48e4e604a3fa8d290870de8ce3c70..7217096afe7a095598d5a5b6cf6ac5f738083e36 100644 (file)
@@ -48,7 +48,7 @@ static struct swit whatnowswitches[] = {
 #define PRMPTSW  1
        { "prompt string", 4 },
 #define VERSIONSW  2
-       { "version", 0 },
+       { "Version", 0 },
 #define HELPSW  3
        { "help", 0 },
        { NULL, 0 }