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: Ralph Corderoy
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.7-branchpoint-322-g5a9a8b7
Date: Wed, 1 Nov 2017 22:41:15 -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  5a9a8b79e8fd4aaaada9cc2f5629477e1e0b2780 (commit)
       via  4e5acdb9a2894eca56cb7ffa022635b9af35acef (commit)
       via  080568bfb0056607359204678f84d23c74f02832 (commit)
       via  2b383bf8c8afa623bd84cc69284a632c71e78e94 (commit)
       via  1df63930a063aa03a7bd09bb719803ea4820d4e1 (commit)
       via  016bb7b5f141f5433d986aaa912a71b43a4cfdc2 (commit)
       via  dc4d0c4bf247cfc88e1f3f9463fa2264d3d226b5 (commit)
       via  a062e4ec504f324c5d5ea7907fef3a737f4d742a (commit)
       via  4fb142af4ad2ca73d141cc04af24e7c1b62f8a77 (commit)
       via  06efa573c7894caa4e5aa1ac7c64bd10ea25928b (commit)
       via  d4aff07086b9c2296a9dcac2f04f9f371b5801c4 (commit)
      from  29a1ada5b960fbf29d52e0f44911370a6c0c7c5f (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 5a9a8b79e8fd4aaaada9cc2f5629477e1e0b2780
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 02:21:55 2017 +0000

    prototypes.h: Delete duplicate prototypes.
    
    Those that already appear in other header files.

commit 4e5acdb9a2894eca56cb7ffa022635b9af35acef
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 02:20:12 2017 +0000

    prototypes.h: Delete default_done() prototype.
    
    Function doesn't exist;  removed in 38615191.

commit 080568bfb0056607359204678f84d23c74f02832
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 01:58:09 2017 +0000

    forwsbr.c: Move interface declaration to own forwsbr.h.

commit 2b383bf8c8afa623bd84cc69284a632c71e78e94
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 01:46:26 2017 +0000

    md5.c, md5.h: Reformat and delete needless portability.
    
    The algorithm is not going to change, bugs are unlikely to appear in the
    upstream RSA version, so reformat the source to be more readable, and
    delete portability code now we have function prototypes with parameters,
    void pointer, etc.

commit 1df63930a063aa03a7bd09bb719803ea4820d4e1
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 01:21:56 2017 +0000

    Split function definition prototypes so identifier starts a line.
    
    Nearly all were already split like this.  The consistency helps ad hoc
    scripting.

commit 016bb7b5f141f5433d986aaa912a71b43a4cfdc2
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 01:12:17 2017 +0000

    Don't have `static' of a function definition on its own line.
    
    Join it to the next line that species the return type.

commit dc4d0c4bf247cfc88e1f3f9463fa2264d3d226b5
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 01:09:32 2017 +0000

    Move the opening brace of a C function to its own line.
    
    If the brace doesn't start a line of its own then vi(1)'s
    function-related commands don't spot the function.

commit a062e4ec504f324c5d5ea7907fef3a737f4d742a
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 00:50:51 2017 +0000

    repl.c: Add `static' to function definitions to match declarations.

commit 4fb142af4ad2ca73d141cc04af24e7c1b62f8a77
Author: Ralph Corderoy <address@hidden>
Date:   Thu Nov 2 00:34:18 2017 +0000

    repl.c, replsbr.c: Move shared data into header file.
    
    repl.c declared global variables, and replsbr.c had extern statements
    that hopefully matched them.  But they're really inputs into replsbr.c's
    code, so move the declarations into a new header file that both then
    include, and define them in replsbr.c.

commit 06efa573c7894caa4e5aa1ac7c64bd10ea25928b
Author: Ralph Corderoy <address@hidden>
Date:   Wed Nov 1 17:21:23 2017 +0000

    uip: Replace some ints that are only ever 0 or 1 with bool.
    
    Knowing the domain of the variable is Boolean aids comprehension of the
    variable's name and purpose.

commit d4aff07086b9c2296a9dcac2f04f9f371b5801c4
Author: Ralph Corderoy <address@hidden>
Date:   Wed Nov 1 11:39:37 2017 +0000

    send.c, whatnowsbr.c: Delete option variables set but never read.
    
    Some options are passed on without the code parsing the options having
    to act upon their value.  These don't need to store the option's Boolean
    value in a local variable that's never read.

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

Summary of changes:
 Makefile.am            |   2 +
 h/md5.h                |  49 +-----
 h/prototypes.h         |  15 --
 sbr/addrsbr.c          |   3 +-
 sbr/base64.c           |   6 +-
 sbr/charstring.c       |  42 +++--
 sbr/check_charset.c    |   3 +-
 sbr/context_find.c     |   6 +-
 sbr/credentials.c      |   3 +-
 sbr/datetime.c         |  15 +-
 sbr/dtime.c            |   3 +-
 sbr/dtimep.l           |   3 +-
 sbr/error.c            |   3 +-
 sbr/escape_addresses.c |   9 +-
 sbr/fmt_addr.c         |   3 +-
 sbr/fmt_new.c          |   3 +-
 sbr/fmt_scan.c         |   6 +-
 sbr/getcpy.c           |   3 +-
 sbr/icalendar.l        |  12 +-
 sbr/icalparse.y        |  39 +++--
 sbr/lock_file.c        |   3 +-
 sbr/m_getfld.c         |  31 ++--
 sbr/m_mktemp.c         |  15 +-
 sbr/m_rand.c           |   3 +-
 sbr/md5.c              | 408 ++++++++++++++++++++++++-------------------------
 sbr/message_id.c       |   7 +-
 sbr/mime_type.c        |   3 +-
 sbr/mts.c              |   3 +-
 sbr/netsec.c           |   6 +-
 sbr/print_help.c       |   3 +-
 sbr/readconfig.c       |   3 +-
 sbr/signals.c          |   3 +-
 sbr/trimcpy.c          |   6 +-
 sbr/utils.c            |  66 +++++---
 sbr/vector.c           |  75 ++++++---
 uip/dist.c             |   1 +
 uip/folder.c           |   6 +-
 uip/forw.c             |   1 +
 uip/forwsbr.c          |   1 +
 uip/forwsbr.h          |   9 ++
 uip/mhbuildsbr.c       |  27 ++--
 uip/mhfixmsg.c         | 117 +++++++++-----
 uip/mhical.c           |  30 ++--
 uip/mhlsbr.c           |   3 +-
 uip/mhparse.c          |  30 ++--
 uip/mhshowsbr.c        |   9 +-
 uip/mhstore.c          |   7 +-
 uip/mhstoresbr.c       |  24 +--
 uip/mkstemp.c          |  12 +-
 uip/msgchk.c           |  29 ++--
 uip/pick.c             |   8 +-
 uip/picksbr.c          |  16 +-
 uip/popsbr.c           |   5 +-
 uip/post.c             | 128 ++++++++--------
 uip/prompter.c         |  29 ++--
 uip/rcvstore.c         |  13 +-
 uip/rcvtty.c           |   1 +
 uip/refile.c           |  18 ++-
 uip/repl.c             |  59 ++++---
 uip/replsbr.c          |  23 +--
 uip/replsbr.h          |  15 ++
 uip/rmf.c              |  16 +-
 uip/rmm.c              |   7 +-
 uip/scan.c             |  21 +--
 uip/scansbr.c          |   6 +-
 uip/send.c             |  30 ++--
 uip/sendsbr.c          |  35 ++---
 uip/show.c             |  17 ++-
 uip/slocal.c           |  24 +--
 uip/sortm.c            |  14 +-
 uip/viamail.c          |   6 +-
 uip/whatnowproc.c      |   7 +-
 uip/whatnowsbr.c       |  40 ++---
 73 files changed, 955 insertions(+), 752 deletions(-)
 create mode 100644 uip/forwsbr.h
 create mode 100644 uip/replsbr.h


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



reply via email to

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