commit cf868c8eeb45f47063cc5d30b04b552e7dd5a7c4
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Thu Jan 7 12:34:40 2016 +0100
Commit: sin <[email protected]>
CommitDate: Mon Jan 11 15:37:58 2016 +0000
Stop matching when lastmatch points to '\n'
This situation happens with something like s/$/test/,
where rm_so == rm_eo == 0. Without this check, ed
keeps looping forever.
diff --git a/ed.c b/ed.c
index 67ffdb8..4a872ed 100644
--- a/ed.c
+++ b/ed.c
@@ -1005,7 +1005,7 @@ subline(int num, int nth)
static size_t siz, cap;
i = changed = siz = 0;
- for (m = match(num); m; m = rematch(num)) {
+ for (m = match(num); m && *lastmatch != '\n'; m = rematch(num)) {
addpre(&s, &cap, &siz);
changed |= addsub(&s, &cap, &siz, nth, ++i);
}