From cdb90cb9cbe47588fac7537896f1cfa98792b827 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 8 May 2014 16:13:54 -0700 Subject: [PATCH 1/3] maint: fix indenting to pacify 'prohibit_tab_based_indentation' * src/dfa.c: Use spaces and not tabs to indent some lines. --- src/dfa.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/dfa.c b/src/dfa.c index fc2acdc..93638ec 100644 --- a/src/dfa.c +++ b/src/dfa.c @@ -182,25 +182,25 @@ enum a backtracking matcher. */ BEGLINE, /* BEGLINE is a terminal symbol that matches - the empty string at the beginning of a - line. */ + the empty string at the beginning of a + line. */ ENDLINE, /* ENDLINE is a terminal symbol that matches - the empty string at the end of a line. */ + the empty string at the end of a line. */ BEGWORD, /* BEGWORD is a terminal symbol that matches - the empty string at the beginning of a - word. */ + the empty string at the beginning of a + word. */ ENDWORD, /* ENDWORD is a terminal symbol that matches - the empty string at the end of a word. */ + the empty string at the end of a word. */ LIMWORD, /* LIMWORD is a terminal symbol that matches - the empty string at the beginning or the - end of a word. */ + the empty string at the beginning or the + end of a word. */ NOTLIMWORD, /* NOTLIMWORD is a terminal symbol that - matches the empty string not at + matches the empty string not at the beginning or end of a word. */ QMARK, /* QMARK is an operator of one argument that @@ -839,9 +839,9 @@ static int cur_mb_len = 1; /* Length of the multibyte representation of wctok. */ static wint_t wctok; /* Wide character representation of the current - multibyte character, or WEOF if there was - an encoding error. Used only if - MB_CUR_MAX > 1. */ + multibyte character, or WEOF if there was + an encoding error. Used only if + MB_CUR_MAX > 1. */ /* Fetch the next lexical input character. Set C (of type int) to the -- 1.9.0