Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |commit 0663bdf11a409961da5b1120741a69814da8ce65 |Author: Timo Röhling |Date: Tue Nov 23 19:45:33 2021 +0100 | | Terminal scrollback with ring buffer | | This patch adds a ring buffer for scrollback to the terminal. The | advantage of using a ring buffer is that the common case, scrolling with | no static screen content, can be achieved very efficiently by | incrementing and decrementing the starting line (modulo buffer size). | | The scrollback buffer is limited to HISTSIZE lines in order to bound | memory usage. As the lines are allocated on demand, it is possible to | implement unlimited scrollback with few changes. If the terminal is | reset, the scroll back buffer is reset, too. | |diff --git a/config.def.h b/config.def.h |index 91ab8ca..e3b469b 100644 |--- a/config.def.h |+++ b/config.def.h -------------------------- Patching file config.def.h using Plan A... Hunk #1 succeeded at 201. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/st.c b/st.c |index 51049ba..f9e24ba 100644 |--- a/st.c |+++ b/st.c -------------------------- Patching file st.c using Plan A... Hunk #1 succeeded at 43. Hunk #2 succeeded at 113. Hunk #3 succeeded at 215. Hunk #4 succeeded at 430. Hunk #5 succeeded at 544. Hunk #6 succeeded at 559. Hunk #7 succeeded at 587. Hunk #8 succeeded at 625. Hunk #9 succeeded at 972. Hunk #10 succeeded at 1002. Hunk #11 succeeded at 1025. Hunk #12 succeeded at 1049. Hunk #13 succeeded at 1087. Hunk #14 succeeded at 1131. Hunk #15 succeeded at 1165. Hunk #16 succeeded at 1291. Hunk #17 succeeded at 1300. Hunk #18 succeeded at 1326. Hunk #19 succeeded at 1343. Hunk #20 succeeded at 1358. Hunk #21 succeeded at 1375. Hunk #22 succeeded at 2196. Hunk #23 succeeded at 2579. Hunk #24 succeeded at 2591. Hunk #25 succeeded at 2622. Hunk #26 succeeded at 2653. Hunk #27 succeeded at 2741. Hunk #28 succeeded at 2762. Hunk #29 succeeded at 2785. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/st.h b/st.h |index 519b9bd..b48e810 100644 |--- a/st.h |+++ b/st.h -------------------------- Patching file st.h using Plan A... Hunk #1 succeeded at 19. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/x.c b/x.c |index 8a16faa..1bb5853 100644 |--- a/x.c |+++ b/x.c -------------------------- Patching file x.c using Plan A... Hunk #1 succeeded at 59. done