~torresjrjr/public-inbox

ed: fix s/ /\<enter><enter> v3 PROPOSED

Curtis Arthaud: 1
 fix s/ /\<enter><enter>

 1 files changed, 0 insertions(+), 6 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~torresjrjr/public-inbox/patches/50248/mbox | git am -3
Learn more about email & git

[PATCH ed v3] fix s/ /\<enter><enter> Export this patch

Signed-off-by: Curtis Arthaud <uku82@gmx.fr>
---
 parse.ha | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/parse.ha b/parse.ha
index 5e65128..11ecbf2 100644
--- a/parse.ha
+++ b/parse.ha
@@ -105,12 +105,6 @@ fn parse(input: *bufio::scanner) (Command | ParseError | InteractionError) = {
			case io::EOF =>
				break;
			};
			// workaround scan_line undelimited last line.
			// note, GNU ed would use "p\n" instead.
			if (inputline == "") {
				append(cmd.textinput, "\n");
				break;
			};

			let t = strings::iter(inputline);
			let (part, seen_delim) = scan_item(&t, cmd.delim);
--
2.44.0