From 32a6e5613bc88b99aae6ebae35ad87e8dc9c471b Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Tue, 12 Feb 2013 19:01:12 +0100 Subject: [PATCH] Cosmetics. --- mymail.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mymail.c b/mymail.c index ef6e5c1..325562e 100644 --- a/mymail.c +++ b/mymail.c @@ -55,14 +55,14 @@ #define LEADING_FROM_LINE_REGEXP_STRING "^From [^ ]* \\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\) \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\) [ 123][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9]\n$" -regex_t leading_from_line_regexp; - /* Global variables! */ int paranoid; int quiet; int ignore_dot_files; +regex_t leading_from_line_regexp; + /********************************************************************/ enum { @@ -183,7 +183,6 @@ char *default_value(char *current_value, FILE *safe_fopen(const char *path, const char *mode, const char *comment) { FILE *result = fopen(path, mode); - /* printf("Opening '%s' with mode \"%s\"\n", path, mode); */ if(result) { return result; } else { -- 2.20.1