nmh-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated


From: David Levine
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. c3cf229baf2020da002739bfb662c2c37cc61ab7
Date: Wed, 07 Mar 2012 00:53:29 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".

The branch, master has been updated
       via  c3cf229baf2020da002739bfb662c2c37cc61ab7 (commit)
       via  15e319de7289e1bdd130f31db6ee6409bc0096e4 (commit)
       via  145e6a2b65d8d84fc06b8dc9c61555e1f648c1c6 (commit)
       via  31c375bd6cdaab71ef78374b64e413941854fa4e (commit)
      from  8115c2f00dda36b1ee8db290743536a9b6e406cf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=c3cf229baf2020da002739bfb662c2c37cc61ab7


commit c3cf229baf2020da002739bfb662c2c37cc61ab7
Author: David Levine <address@hidden>
Date:   Tue Mar 6 18:52:41 2012 -0600

    Escape spaces in DEFAULTS sections of man pages so they no longer are lost.

diff --git a/man/mhl.man b/man/mhl.man
index eff230f..a5dc12e 100644
--- a/man/mhl.man
+++ b/man/mhl.man
@@ -363,8 +363,8 @@ show(1), ap(8), dp(8)
 .nf
 .RB ` \-bell '
 .RB ` \-noclear '
-.RB ` \-length 40 '
-.RB ` \-width 80 '
+.RB ` \-length\ 40 '
+.RB ` \-width\ 80 '
 .fi
 
 .SH CONTEXT
diff --git a/man/mhlist.man b/man/mhlist.man
index f0ef31a..3db222e 100644
--- a/man/mhlist.man
+++ b/man/mhlist.man
@@ -179,8 +179,8 @@ mhbuild(1), mhshow(1), mhstore(1), sendfiles(1)
 .RB ` \-nocheck '
 .RB ` \-headers '
 .RB ` \-realsize '
-.RB ` \-rcache ask '
-.RB ` \-wcache ask '
+.RB ` \-rcache\ ask '
+.RB ` \-wcache\ ask '
 .RB ` \-noverbose '
 .fi
 
diff --git a/man/mhshow.man b/man/mhshow.man
index 27ebd95..a3117df 100644
--- a/man/mhshow.man
+++ b/man/mhshow.man
@@ -591,13 +591,13 @@ mhbuild(1), mhl(1), mhlist(1), mhstore(1), sendfiles(1)
 .RB ` +folder "' defaults to the current folder"
 .RB ` msgs "' defaults to cur"
 .RB ` \-nocheck '
-.RB ` \-form mhl.headers '
+.RB ` \-form\ mhl.headers '
 .RB ` \-pause '
-.RB ` \-rcache ask '
+.RB ` \-rcache\ ask '
 .RB ` \-realsize '
 .RB ` \-noserialonly '
 .RB ` \-noverbose '
-.RB ` \-wcache ask '
+.RB ` \-wcache\ ask '
 .fi
 
 .SH CONTEXT
diff --git a/man/mhstore.man b/man/mhstore.man
index 59e2794..219d12e 100644
--- a/man/mhstore.man
+++ b/man/mhstore.man
@@ -466,8 +466,8 @@ mhbuild(1), mhlist(1), mhshow(1), sendfiles(1)
 .RB ` msgs "' defaults to cur"
 .RB ` \-noauto '
 .RB ` \-nocheck '
-.RB ` \-rcache ask '
-.RB ` \-wcache ask '
+.RB ` \-rcache\ ask '
+.RB ` \-wcache\ ask '
 
 .SH CONTEXT
 If a folder is given, it will become the current folder.  The last

http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=15e319de7289e1bdd130f31db6ee6409bc0096e4


commit 15e319de7289e1bdd130f31db6ee6409bc0096e4
Author: David Levine <address@hidden>
Date:   Tue Mar 6 18:51:12 2012 -0600

    Removed ignored -verbose (and -noverbose) options to mhstore, just in the 
man pages.  The code remains unchanged.

diff --git a/man/mh-chart.man b/man/mh-chart.man
index 5bcc700..785628d 100644
--- a/man/mh-chart.man
+++ b/man/mh-chart.man
@@ -468,7 +468,6 @@ is equivalent to
 .IR content ]
 \&...
 .RB [ \-auto " | " \-noauto ]
-.RB [ \-verbose " | " \-noverbose ]
 .RB [ \-rcache
 .IR policy ]
 .RB [ \-wcache
diff --git a/man/mhstore.man b/man/mhstore.man
index af05bf2..59e2794 100644
--- a/man/mhstore.man
+++ b/man/mhstore.man
@@ -19,7 +19,6 @@ mhstore \- store contents of MIME messages into files
 .IR content ]
 \&...
 .RB [ \-auto " | " \-noauto ]
-.RB [ \-verbose " | " \-noverbose ]
 .RB [ \-rcache
 .IR policy ]
 .RB [ \-wcache
@@ -469,7 +468,6 @@ mhbuild(1), mhlist(1), mhshow(1), sendfiles(1)
 .RB ` \-nocheck '
 .RB ` \-rcache ask '
 .RB ` \-wcache ask '
-.RB ` \-noverbose '
 
 .SH CONTEXT
 If a folder is given, it will become the current folder.  The last

http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=145e6a2b65d8d84fc06b8dc9c61555e1f648c1c6


commit 145e6a2b65d8d84fc06b8dc9c61555e1f648c1c6
Author: David Levine <address@hidden>
Date:   Tue Mar 6 18:49:27 2012 -0600

    Fixed example to show that mhparam preserves case of component name.

diff --git a/man/mhparam.man b/man/mhparam.man
index 91a8d60..93d9c90 100644
--- a/man/mhparam.man
+++ b/man/mhparam.man
@@ -53,7 +53,7 @@ Mail
 % mhparam mhlproc
 %libdir%/mhl
 
-% mhparam \-component path
+% mhparam \-component Path
 Path: Mail
 
 % mhparam AliasFile rmmproc

http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=31c375bd6cdaab71ef78374b64e413941854fa4e


commit 31c375bd6cdaab71ef78374b64e413941854fa4e
Author: David Levine <address@hidden>
Date:   Tue Mar 6 18:48:21 2012 -0600

    Initialized local wasdlm to prevent uninitialized use.

diff --git a/uip/burst.c b/uip/burst.c
index 1f626f3..980972e 100644
--- a/uip/burst.c
+++ b/uip/burst.c
@@ -208,7 +208,7 @@ main (int argc, char **argv)
 static int
 find_delim (int msgnum, struct smsg *smsgs)
 {
-    int wasdlm, msgp;
+    int wasdlm = 0, msgp;
     off_t pos;
     char c, *msgnam;
     char buffer[BUFSIZ];

-----------------------------------------------------------------------

Summary of changes:
 man/mh-chart.man |    1 -
 man/mhl.man      |    4 ++--
 man/mhlist.man   |    4 ++--
 man/mhparam.man  |    2 +-
 man/mhshow.man   |    6 +++---
 man/mhstore.man  |    6 ++----
 uip/burst.c      |    2 +-
 7 files changed, 11 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
The nmh Mail Handling System



reply via email to

[Prev in Thread] Current Thread [Next in Thread]