summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2023-01-01 17:30:41 -0800
committerJim Meyering <meyering@fb.com>2023-01-01 17:30:41 -0800
commitf6df64598f9af4be7beb8212d244df6d97cae67b (patch)
tree8c85192ea99ae34d14c7d75283670c6877c20b52
parent805a40757e15a51cb994e308b62ff3352b071fc6 (diff)
downloadsed-f6df64598f9af4be7beb8212d244df6d97cae67b.tar.gz
maint: expand a few TABs to placate make syntax-check
* sed/execute.c (alloc): Indent with spaces, not TABs.
-rw-r--r--sed/execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sed/execute.c b/sed/execute.c
index 018dd90..65c4629 100644
--- a/sed/execute.c
+++ b/sed/execute.c
@@ -50,8 +50,8 @@ struct line {
char *active; /* Pointer to non-consumed part of text. */
idx_t length; /* Length of text (or active, if used). */
idx_t alloc; /* Allocated space for active. */
- /* 0 <= LENGTH <= ALLOC, and the malloc
- size is ACTIVE - TEXT + ALLOC + DFA_SLOP. */
+ /* 0 <= LENGTH <= ALLOC, and the malloc
+ size is ACTIVE - TEXT + ALLOC + DFA_SLOP. */
bool chomped; /* Was a trailing newline dropped? */
mbstate_t mbstate;
};