>From 6dcda3e3e38ad38cfde95252d1baacb44fae30d1 Mon Sep 17 00:00:00 2001 From: behoffski Date: Fri, 14 Mar 2014 19:38:34 +1030 Subject: [PATCH 1/3] maint: grep.h: Replace code-alignment tabs with spaces. Tabs are already forbidden as leading character of a line, and trailing whitespace is also not allowed. This change is part of an effort to tighten source layout options to improve consistency and repeatability. --- src/grep.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/grep.h b/src/grep.h index 4d642a1..84844a1 100644 --- a/src/grep.h +++ b/src/grep.h @@ -39,9 +39,9 @@ extern const char after_options[]; /* The following flags are exported from grep for the matchers to look at. */ -extern int match_icase; /* -i */ -extern int match_words; /* -w */ -extern int match_lines; /* -x */ -extern unsigned char eolbyte; /* -z */ +extern int match_icase; /* -i */ +extern int match_words; /* -w */ +extern int match_lines; /* -x */ +extern unsigned char eolbyte; /* -z */ #endif -- 1.8.3.2