[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
Ralph Corderoy |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.6-branchpoint-1351-ge9bab73 |
Date: |
Sun, 14 May 2017 06:50:13 -0400 (EDT) |
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 e9bab734900d62af2bf2fc873dd480e7503335b9 (commit)
via 237a4145c1557c7f6e950afbad4848504cc334b4 (commit)
via de237d4dc2cafee55bd50a15fbeb2d7a880a87cf (commit)
via 665dfc96f45c47ecfae79f1baa2c29dabe5a2ded (commit)
via a34ce71c09fe1d5dda955bbd987f3add2b3c368e (commit)
via 042f5bed7ff3e5b34ff3166951a7b98bf6bbf105 (commit)
via 01b844b7e61d6537be3f75acc1a747ed4fda206f (commit)
via 2a4e2f15af1a697152104af8f46f0ba6aab472ff (commit)
via 9674a6207f8a58010d560d60091a626b12ab0e3a (commit)
via d60c3eab53ca38c4f3bd88b0cc5fda86a527514f (commit)
via 47e4d2685ab31e71336a7806fdc3dcd2a107f60f (commit)
from 8d21bed88b7694600d69a888ed1253cf5f6f6ae0 (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 -----------------------------------------------------------------
commit e9bab734900d62af2bf2fc873dd480e7503335b9
Author: Ralph Corderoy <address@hidden>
Date: Sun May 14 11:23:33 2017 +0100
Use new PLURALS(n) macro instead of variety of tests.
Whether to output a plural noun in a message was decided by ternary
operators that tested n==1, n!=1, n>1, etc. Make them all consistent by
using PLURALS(n).
commit 237a4145c1557c7f6e950afbad4848504cc334b4
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 23:40:50 2017 +0100
uip/folder.c: Use `%s' for plural, not `%c'.
Instead of a ternary operator with 's' and ' ' as the outcomes, switch
the format specifier from `%c' to `%s' and use strings "s" and " ".
commit de237d4dc2cafee55bd50a15fbeb2d7a880a87cf
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 18:39:06 2017 +0100
uip/folder.c: Rewrite plural test to common form.
The common form is a choice between "" and "s". This one occurrence was
using " " and "s" so either output was a fixed width. Alter the
printf(3) format string from `%s' to `%1s' to provide that instead.
Allows the new code to be altered by an upcoming `plural' change.
commit 665dfc96f45c47ecfae79f1baa2c29dabe5a2ded
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 18:35:15 2017 +0100
Makefile.am: Alter long lists to be sorted, one entry per line.
It was hard to see what files were included in some variables when
searching for the best place for new content. Some variables had
definitions that were almost sorted, by weren't. Switch to a
one-entry-per-line list, in `LC_ALL=C sort' order, documented at the
start of the file. Makes it easy to run through the lists and see the
patterns.
commit a34ce71c09fe1d5dda955bbd987f3add2b3c368e
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 13:24:03 2017 +0100
Use FENDNULL() instead of duplicate, locally defined, empty().
Three files had an empty() that was defined using FENDNULL(); use the
latter directly.
commit 042f5bed7ff3e5b34ff3166951a7b98bf6bbf105
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 13:13:18 2017 +0100
Add FENDNULL(s): fends off NULL by giving an empty string instead.
Use it in place of all the `foo->bar_xyzzy ? foo->bar_xyzzy : ""'.
Avoids the reader having to check first two of the ternary operands are
the same.
commit 01b844b7e61d6537be3f75acc1a747ed4fda206f
Author: Ralph Corderoy <address@hidden>
Date: Sat May 13 12:56:58 2017 +0100
sbr/mf.c: Rename path to routepath to avoid h/mh.h clash.
Adding #include of h/mh.h brings two path global symbols together;
path() and char *path. Rename the latter. h/mh.h is needed by a future
commit.
commit 2a4e2f15af1a697152104af8f46f0ba6aab472ff
Author: Ralph Corderoy <address@hidden>
Date: Fri May 12 23:29:31 2017 +0100
Replace `a == b ? 1 : 0' and similar with `a == b'.
commit 9674a6207f8a58010d560d60091a626b12ab0e3a
Author: Ralph Corderoy <address@hidden>
Date: Fri May 12 23:14:43 2017 +0100
Replace `e ? 0 : 1' with `!e'.
Needs less thought to read.
commit d60c3eab53ca38c4f3bd88b0cc5fda86a527514f
Author: Ralph Corderoy <address@hidden>
Date: Fri May 12 22:45:34 2017 +0100
sbr/icalparse.y: Replace max(BUFSIZ, 8192) with NMH_BUFSIZ.
commit 47e4d2685ab31e71336a7806fdc3dcd2a107f60f
Author: Ralph Corderoy <address@hidden>
Date: Fri May 12 22:42:35 2017 +0100
Use existing macros min() and max() more.
-----------------------------------------------------------------------
Summary of changes:
Makefile.am | 839 +++++++++++++++++++++++++++++++++-----------
config/config.c | 2 +-
h/mh.h | 14 +-
mts/smtp/smtp.c | 2 +-
sbr/addrsbr.c | 18 +-
sbr/arglist.c | 4 +-
sbr/charstring.c | 4 +-
sbr/context_del.c | 2 +-
sbr/context_find.c | 2 +-
sbr/context_replace.c | 2 +-
sbr/datetime.c | 4 +-
sbr/escape_addresses.c | 4 +-
sbr/fmt_compile.c | 8 +-
sbr/fmt_scan.c | 2 +-
sbr/icalparse.y | 2 +-
sbr/m_convert.c | 4 +-
sbr/m_getfld.c | 2 +-
sbr/mf.c | 25 +-
sbr/mime_type.c | 4 +-
sbr/netsec.c | 2 +-
sbr/read_yes_or_no_if_tty.c | 2 +-
sbr/seq_print.c | 6 +-
sbr/utils.c | 7 +-
uip/ali.c | 8 +-
uip/burst.c | 2 +-
uip/fmttest.c | 8 +-
uip/folder.c | 13 +-
uip/forw.c | 6 +-
uip/mhbuildsbr.c | 6 +-
uip/mhfixmsg.c | 20 +-
uip/mhical.c | 4 +-
uip/mhlistsbr.c | 36 +-
uip/mhlsbr.c | 16 +-
uip/mhparam.c | 2 +-
uip/mhshowsbr.c | 2 +-
uip/msgchk.c | 2 +-
uip/pick.c | 2 +-
uip/picksbr.c | 2 +-
uip/popsbr.c | 2 +-
uip/post.c | 20 +-
uip/refile.c | 4 +-
uip/replsbr.c | 8 +-
uip/scansbr.c | 2 +-
43 files changed, 772 insertions(+), 354 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.6-branchpoint-1351-ge9bab73,
Ralph Corderoy <=