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. 6e00dba11ff815307cd60cee7a7f69d115591c7e
Date: Wed, 11 Jan 2012 23:06:54 +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  6e00dba11ff815307cd60cee7a7f69d115591c7e (commit)
      from  6a68057d8ef48bef3ee752741a53a629a2840e68 (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=6e00dba11ff815307cd60cee7a7f69d115591c7e


commit 6e00dba11ff815307cd60cee7a7f69d115591c7e
Author: David Levine <address@hidden>
Date:   Wed Jan 11 17:06:44 2012 -0600

    Removed or protected some unused macros.

diff --git a/sbr/client.c b/sbr/client.c
index 763b2a4..7ae356a 100644
--- a/sbr/client.c
+++ b/sbr/client.c
@@ -16,9 +16,6 @@
 #include <netdb.h>
 #include <arpa/inet.h>
 
-#define        TRUE         1
-#define        FALSE        0
-
 #define        MAXARGS   1000
 
 /*
diff --git a/sbr/fmt_scan.c b/sbr/fmt_scan.c
index 9784919..2bf1821 100644
--- a/sbr/fmt_scan.c
+++ b/sbr/fmt_scan.c
@@ -22,8 +22,6 @@
 #  include <wchar.h>
 #endif
 
-#define        NFMTS MAXARGS
-
 extern char *formataddr ();    /* hook for custom address formatting */
 
 #ifdef LBL
diff --git a/sbr/uprf.c b/sbr/uprf.c
index b3c81ff..5da5e76 100644
--- a/sbr/uprf.c
+++ b/sbr/uprf.c
@@ -9,8 +9,10 @@
 
 #include <h/mh.h>
 
-#define TO_LOWER 040
-#define NO_MASK  000
+#ifndef LOCALE
+# define TO_LOWER 040
+# define NO_MASK  000
+#endif
 
 
 int
diff --git a/uip/inc.c b/uip/inc.c
index 1dcba6a..9310ae1 100644
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -109,7 +109,9 @@ static struct swit switches[] = {
  * flags for the mail source
  */
 #define INC_FILE  0
-#define INC_POP   1
+#ifdef POP
+# define INC_POP   1
+#endif /* POP */
 
 static int inc_type;
 static struct Maildir_entry {

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

Summary of changes:
 sbr/client.c   |    3 ---
 sbr/fmt_scan.c |    2 --
 sbr/uprf.c     |    6 ++++--
 uip/inc.c      |    4 +++-
 4 files changed, 7 insertions(+), 8 deletions(-)


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



reply via email to

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