View | Details | Raw Unified | Return to bug 208554
Collapse All | Expand All

(-)usr.bin/sed/compile.c (-1 lines)
Lines 746-752 Link Here
746
	while (cu_fgets(lbuf, sizeof(lbuf), NULL)) {
746
	while (cu_fgets(lbuf, sizeof(lbuf), NULL)) {
747
		op = s = text + size;
747
		op = s = text + size;
748
		p = lbuf;
748
		p = lbuf;
749
		EATSPACE();
750
		for (esc_nl = 0; *p != '\0'; p++) {
749
		for (esc_nl = 0; *p != '\0'; p++) {
751
			if (*p == '\\' && p[1] != '\0' && *++p == '\n')
750
			if (*p == '\\' && p[1] != '\0' && *++p == '\n')
752
				esc_nl = 1;
751
				esc_nl = 1;

Return to bug 208554