]> granicus.if.org Git - neomutt/commitdiff
unused prototypes, whitespace
authorRichard Russon <rich@flatcap.org>
Wed, 1 Nov 2017 04:24:02 +0000 (04:24 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 7 Nov 2017 13:48:46 +0000 (13:48 +0000)
conn/sasl.c
conn/tunnel.c
main.c
protos.h

index c1c7fa75f8342bd496ebe9ddbad97043c5c50313..2d161c764d9d818796351c2763e9fdce551c2ce7 100644 (file)
@@ -726,7 +726,7 @@ void mutt_sasl_setup_conn(struct Connection *conn, sasl_conn_t *saslconn)
 /*
  * mutt_sasl_done - Invoke when processing is complete.
  *
- * This is a cleanup function, used to free all memory used by the library. 
+ * This is a cleanup function, used to free all memory used by the library.
  * Invoke when processing is complete.
  */
 void mutt_sasl_done(void)
index 76205741527441c4811e136c049f74bb9ecbfc77..84463a5de8000398f9f226027fd1e680590fa6bd 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * @page conn_tunnel Support for network tunnelling 
+ * @page conn_tunnel Support for network tunnelling
  *
  * Support for network tunnelling
  *
diff --git a/main.c b/main.c
index d844f51fb8d2682c85102d250718fe2ebaaf6558..ebfe63b9c81c1dd04cc3f7977584b611c78468c6 100644 (file)
--- a/main.c
+++ b/main.c
@@ -51,6 +51,7 @@
 #include "mailbox.h"
 #include "mutt_curses.h"
 #include "mutt_idna.h"
+#include "mutt_menu.h"
 #include "mutt_regex.h"
 #include "mutt_socket.h"
 #include "ncrypt/ncrypt.h"
index e1c2fb5c1b19a8e2556e4aa1235a50f0d19f7a5a..23774505b55bd14c353796c20dc6964f4fae1ccf 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -234,7 +234,6 @@ void mutt_show_error(void);
 void mutt_signal_init(void);
 void mutt_stamp_attachment(struct Body *a);
 void mutt_tag_set_flag(int flag, int bf);
-bool mutt_ts_capability(void);
 void mutt_unblock_signals(void);
 void mutt_unblock_signals_system(int catch);
 void mutt_update_encoding(struct Body *a);
@@ -259,7 +258,6 @@ int mutt_change_flag(struct Header *h, int bf);
 int mutt_check_encoding(const char *c);
 
 int mutt_check_mime_type(const char *s);
-int mutt_check_month(const char *s);
 int mutt_check_overwrite(const char *attname, const char *path, char *fname,
                          size_t flen, int *append, char **directory);
 int mutt_check_traditional_pgp(struct Header *h, int *redraw);
@@ -372,9 +370,6 @@ uint64_t mutt_rand64(void);
 
 struct Address *alias_reverse_lookup(struct Address *a);
 
-/* utf8.c */
-int mutt_wctoutf8(char *s, unsigned int c, size_t buflen);
-
 #ifdef LOCALES_HACK
 #define IsPrint(c) (isprint((unsigned char) (c)) || ((unsigned char) (c) >= 0xa0))
 #define IsWPrint(wc) (iswprint(wc) || wc >= 0xa0)