]> granicus.if.org Git - neomutt/commitdiff
iwyu / comments
authorRichard Russon <rich@flatcap.org>
Sat, 30 Dec 2017 16:51:13 +0000 (16:51 +0000)
committerRichard Russon <rich@flatcap.org>
Sun, 31 Dec 2017 00:46:15 +0000 (00:46 +0000)
15 files changed:
browser.c
mutt/base64.c
mutt/buffer.c
mutt/date.c
mutt/file.c
mutt/list.c
mutt/list.h
mutt/mapping.c
mutt/mapping.h
mutt/mbyte.c
mutt/regex.c
mutt/signal.c
mutt_address.c
protos.h
tags.c

index 9d1de391c046c4584a2bfda294edecdefc00a532..b932798e4c8f978bd19207e7e7915b486da9e05c 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -1796,7 +1796,7 @@ void mutt_select_file(char *f, size_t flen, int flags, char ***files, int *numfi
             {
               Mask = mutt_mem_calloc(1, sizeof(struct Regex *));
             }
-            mutt_str_replace(&Mask->pattern, buf); //QWQ
+            mutt_str_replace(&Mask->pattern, buf);
             Mask->regex = rx;
             Mask->not = not;
 
index 01bbe6f4d4264c0c9a52bc304bcc9f265c460e3e..2f77fadf04342221a237e3ad75477ab9e2ecb6ff 100644 (file)
  * @note RFC3548 obsoletes RFC2045.
  * @note RFC4648 obsoletes RFC3548.
  *
- * | Data               | Description
- * | :----------------- | :--------------------------------------------------
+ * | Data              | Description
+ * | :---------------- | :--------------------------------------------------
  * | #Index64          | Lookup table for Base64 encoding characters
  *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | mutt_b64_decode()  | convert null-terminated base64 string to raw bytes
- * | mutt_b64_encode()  | convert raw bytes to null-terminated base64 string
+ * | Function          | Description
+ * | :---------------- | :-------------------------------------------------
+ * | mutt_b64_encode() | Convert raw bytes to null-terminated base64 string
+ * | mutt_b64_decode() | Convert null-terminated base64 string to raw bytes
  */
 
 #include "config.h"
@@ -79,7 +79,7 @@ const int Index64[128] = {
 // clang-format on
 
 /**
- * mutt_b64_encode - convert raw bytes to null-terminated base64 string
+ * mutt_b64_encode - Convert raw bytes to null-terminated base64 string
  * @param out  Output buffer for the base64 encoded string
  * @param cin  Input  buffer for the raw bytes
  * @param len  Length of the input buffer
@@ -125,7 +125,7 @@ size_t mutt_b64_encode(char *out, const char *cin, size_t len, size_t olen)
 }
 
 /**
- * mutt_b64_decode - convert null-terminated base64 string to raw bytes
+ * mutt_b64_decode - Convert null-terminated base64 string to raw bytes
  * @param out Output buffer for the raw bytes
  * @param in  Input  buffer for the null-terminated base64-encoded string
  * @retval n Number of bytes written on success
index af153fc73001c0dbafa06135a6483a4b1e85c36d..5d15bbd1902f48d5734bbc23ed2ba82b9f0efd76 100644 (file)
  *
  * The Buffer object make parsing and manipulating strings easier.
  *
- * | Function             | Description
- * | :------------------- | :--------------------------------------------------
- * | mutt_buffer_add()    | Add a string to a Buffer, expanding it if necessary
- * | mutt_buffer_addch()  | Add a single character to a Buffer
- * | mutt_buffer_addstr() | Add a string to a Buffer
- * | mutt_buffer_free()   | Release a Buffer and its contents
- * | mutt_buffer_from()   | Create Buffer from an existing string
- * | mutt_buffer_init()   | Initialise a new Buffer
- * | mutt_buffer_new()    | Create and initialise a Buffer
- * | mutt_buffer_printf() | Format a string into a Buffer
- * | mutt_buffer_reset()  | Reset an existing Buffer
+ * | Function               | Description
+ * | :--------------------- | :--------------------------------------------------
+ * | mutt_buffer_add()      | Add a string to a Buffer, expanding it if necessary
+ * | mutt_buffer_addch()    | Add a single character to a Buffer
+ * | mutt_buffer_addstr()   | Add a string to a Buffer
+ * | mutt_buffer_alloc()    | Create a new Buffer
+ * | mutt_buffer_free()     | Release a Buffer and its contents
+ * | mutt_buffer_from()     | Create Buffer from an existing string
+ * | mutt_buffer_init()     | Initialise a new Buffer
+ * | mutt_buffer_is_empty() | Is the Buffer empty?
+ * | mutt_buffer_new()      | Create and initialise a Buffer
+ * | mutt_buffer_printf()   | Format a string into a Buffer
+ * | mutt_buffer_reset()    | Reset an existing Buffer
  */
 
 #include "config.h"
@@ -44,7 +46,6 @@
 #include <stdio.h>
 #include <string.h>
 #include "buffer.h"
-#include "debug.h"
 #include "memory.h"
 #include "string2.h"
 
index 6f456244b4ee716f11cb907ff2a41ebd469b1de2..fa510cb5277e6f8001ed1853a607565f8a6090e7 100644 (file)
  *
  * Some commonly used time and date functions.
  *
- * | Data                  | Description
- * | :-------------------- | :--------------------------------------------------
- * | #Months               | Months of the year (abbreviated)
- * | #TimeZones            | Lookup table of Time Zones
- * | #Weekdays             | Day of the week (abbreviated)
+ * | Data                      | Description
+ * | :------------------------ | :--------------------------------------------------
+ * | #Months                   | Months of the year (abbreviated)
+ * | #TimeZones                | Lookup table of Time Zones
+ * | #Weekdays                 | Day of the week (abbreviated)
  *
  * | Function                   | Description
  * | :------------------------- | :--------------------------------------------------
index 6a1209fe71374ea4ecd7528192e7670adb5b43a4..1e0a2d1a1dab97e67358164390adec541101336a 100644 (file)
@@ -971,7 +971,7 @@ void mutt_file_touch_atime(int f)
 }
 
 /**
- * mutt_file_chmod - change permissions of a file
+ * mutt_file_chmod - Set permissions of a file
  * @param path Filename
  * @param mode the permissions to set
  * @retval int same as chmod(2)
@@ -984,7 +984,7 @@ int mutt_file_chmod(const char *path, mode_t mode)
 }
 
 /**
- * mutt_file_chmod_add - add permissions to a file
+ * mutt_file_chmod_add - Add permissions to a file
  * @param path Filename
  * @param mode the permissions to add
  * @retval int same as chmod(2)
@@ -1005,7 +1005,7 @@ int mutt_file_chmod_add(const char *path, mode_t mode)
 }
 
 /**
- * mutt_file_chmod_add_stat - add permissions to a file
+ * mutt_file_chmod_add_stat - Add permissions to a file
  * @param path Filename
  * @param mode the permissions to add
  * @param st   struct stat for the file (optional)
@@ -1036,7 +1036,7 @@ int mutt_file_chmod_add_stat(const char *path, mode_t mode, struct stat *st)
 }
 
 /**
- * mutt_file_chmod_rm - remove permissions from a file
+ * mutt_file_chmod_rm - Remove permissions from a file
  * @param path Filename
  * @param mode the permissions to remove
  * @retval int same as chmod(2)
@@ -1057,7 +1057,7 @@ int mutt_file_chmod_rm(const char *path, mode_t mode)
 }
 
 /**
- * mutt_file_chmod_rm_stat - remove permissions from a file
+ * mutt_file_chmod_rm_stat - Remove permissions from a file
  * @param path Filename
  * @param mode the permissions to remove
  * @param st   struct stat for the file (optional)
index 010ac971e6c82fdbf29f9b56e0dd0c97bfcb87bf..b0a361b0bfbf9a25fbf1d17e773bdd65ec97b676 100644 (file)
@@ -39,6 +39,7 @@
  */
 
 #include "config.h"
+#include <string.h>
 #include "list.h"
 #include "memory.h"
 #include "string2.h"
index 2f47116fface44925888ce987d776bda06407ae4..714b0013cf3a1c0754310bbd435ff32a490eb3bc 100644 (file)
@@ -24,7 +24,6 @@
 #ifndef _MUTT_LIST_H
 #define _MUTT_LIST_H
 
-#include <string.h>
 #include <stdbool.h>
 #include "mutt/queue.h"
 
index c76d22b28a2125833db077712d91b9366d66f5a0..98821df8a62b751d22d6e8662a6059f5bc178419 100644 (file)
@@ -33,6 +33,7 @@
  */
 
 #include "mapping.h"
+#include <stddef.h>
 #include "string2.h"
 
 /**
index f636a097570ba8706821915aaf19e8c25a7bcf36..d8b3ccd013a51478e857ecdf9e0ebc1fddecb932 100644 (file)
@@ -23,8 +23,6 @@
 #ifndef _MUTT_MAPPING_H
 #define _MUTT_MAPPING_H
 
-#include <stddef.h>
-
 /**
  * struct Mapping - Mapping between user-readable string and a constant
  */
index e164517e6ae1483e34162d0144994e45f48131bf..daa4f74a3643ceaf1639a25edf98ddca9a6f0117 100644 (file)
@@ -25,9 +25,9 @@
  *
  * Some commonly-used multi-byte string manipulation routines.
  *
- * | Data             | Description
- * | :--------------- | :--------------------------------------------------
- * | #ReplacementChar | When a Unicode character can't be displayed, use this instead
+ * | Data                    | Description
+ * | :---------------------- | :--------------------------------------------------
+ * | #ReplacementChar        | When a Unicode character can't be displayed, use this instead
  *
  * | Function                | Description
  * | :---------------------- | :---------------------------------------------------------
index 7c737b5cb6b7c7c13553d8838e584d7aec62f264..557244514bec1d92fc0f94923d57a041b3cf4b85 100644 (file)
  * | mutt_replacelist_add()    | Add a pattern and a template to a list
  * | mutt_replacelist_apply()  | Apply replacements to a buffer
  * | mutt_replacelist_free()   | Free a ReplaceList object
- * | mutt_replacelist_match()  | Does a string match a spam pattern
+ * | mutt_replacelist_match()  | Does a string match a pattern?
  * | mutt_replacelist_new()    | Create a new ReplaceList
  * | mutt_replacelist_remove() | Remove a pattern from a list
  */
 
 #include "config.h"
+#include <ctype.h>
+#include <regex.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 11317bce84766cfaf0b97f458e6cfbb0e0d1d1c1..422c2193326b8ee685df5cee702f066f375ce41e 100644 (file)
  *
  * | Function                   | Description
  * | :------------------------- | :---------------------------------------------------------
- * | mutt_sig_exit_handler()    | Notify the user and shutdown gracefully
- * | mutt_sig_empty_handler()   | Dummy signal handler
  * | mutt_sig_allow_interrupt() | Allow/disallow Ctrl-C (SIGINT)
  * | mutt_sig_block()           | Block signals during critical operations
  * | mutt_sig_block_system()    | Block signals before calling exec()
+ * | mutt_sig_empty_handler()   | Dummy signal handler
+ * | mutt_sig_exit_handler()    | Notify the user and shutdown gracefully
  * | mutt_sig_init()            | Initialise the signal handling
  * | mutt_sig_unblock()         | Restore previously blocked signals
  * | mutt_sig_unblock_system()  | Restore previously blocked signals
@@ -44,7 +44,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include "debug.h"
 #include "message.h"
 #include "signal2.h"
 
index e5f155d41ade003557b46587d1c7cb7b8174e2e2..14e2237218c968b5f90c9f95b213b2711089ceea 100644 (file)
@@ -23,7 +23,6 @@
 
 #include "config.h"
 #include <stdio.h>
-#include <string.h>
 #include "mutt/mutt.h"
 #include "address.h"
 
index fa1c6c9a4b9571cc0cbad4a5aded27a356af8dfa..961a4b8eea9f67bc0d37af803d99a118fcc579d2 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -360,9 +360,7 @@ int wcscasecmp(const wchar_t *a, const wchar_t *b);
 bool message_is_tagged(struct Context *ctx, int index);
 bool message_is_visible(struct Context *ctx, int index);
 
-int mutt_addrlist_to_local(struct Address *a);
 int mutt_addrlist_to_intl(struct Address *a, char **err);
-int mutt_env_to_intl(struct Envelope *env, char **tag, char **err);
-void mutt_env_to_local(struct Envelope *e);
+int mutt_addrlist_to_local(struct Address *a);
 
 #endif /* _MUTT_PROTOS_H */
diff --git a/tags.c b/tags.c
index 8a62e78e1889924a8769623c6c5ebb74c536bcc0..3549eec88965a3b441b50a94848acd4cbc9063e9 100644 (file)
--- a/tags.c
+++ b/tags.c
@@ -44,6 +44,7 @@
 
 #include "config.h"
 #include <stddef.h>
+#include <string.h>
 #include "mutt/hash.h"
 #include "mutt/queue.h"
 #include "mutt/string2.h"