summaryrefslogtreecommitdiff
path: root/sed/execute.c
diff options
context:
space:
mode:
Diffstat (limited to 'sed/execute.c')
-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;
};