Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |From 25d9cca81ce48141de7f6a823b006dddaafd9de8 Mon Sep 17 00:00:00 2001 |From: Sergei Grechanik |Date: Sun, 22 Sep 2024 08:36:05 -0700 |Subject: [PATCH] Kitty graphics protocol support 7b717e3 2024-09-22 | |This patch implements the kitty graphics protocol in st. |See https://github.com/sergei-grechanik/st-graphics |Created by squashing the graphics branch, the most recent |commit is 7b717e38b1739e11356b34df9fdfdfa339960864 (2024-09-22). | |Squashed on top of a0274bc20e11d8672bb2953fdd1d3010c0e708c5 | |Note that the following files were excluded from the squash: | .clang-format | README.md | generate-rowcolumn-helpers.py | rowcolumn-diacritics.txt | rowcolumn_diacritics.sh |--- | Makefile | 4 +- | config.def.h | 46 +- | config.mk | 5 +- | graphics.c | 3812 ++++++++++++++++++++++++++++++++ | graphics.h | 107 + | icat-mini.sh | 801 +++++++ | khash.h | 627 ++++++ | kvec.h | 90 + | rowcolumn_diacritics_helpers.c | 391 ++++ | st.c | 279 ++- | st.h | 84 +- | st.info | 6 + | win.h | 3 + | x.c | 411 +++- | 14 files changed, 6615 insertions(+), 51 deletions(-) | create mode 100644 graphics.c | create mode 100644 graphics.h | create mode 100755 icat-mini.sh | create mode 100644 khash.h | create mode 100644 kvec.h | create mode 100644 rowcolumn_diacritics_helpers.c | |diff --git a/Makefile b/Makefile |index 15db421..e79b89e 100644 |--- a/Makefile |+++ b/Makefile -------------------------- Patching file Makefile using Plan A... Hunk #1 succeeded at 4. Hunk #2 succeeded at 16. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/config.def.h b/config.def.h |index 2cd740a..4aadbbc 100644 |--- a/config.def.h |+++ b/config.def.h -------------------------- Patching file config.def.h using Plan A... Hunk #1 succeeded at 8. Hunk #2 succeeded at 30. Hunk #3 succeeded at 171. Hunk #4 succeeded at 200. Hunk #5 succeeded at 219. Hunk #6 succeeded at 233. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/config.mk b/config.mk |index fdc29a7..cb2875c 100644 |--- a/config.mk |+++ b/config.mk -------------------------- Patching file config.mk using Plan A... Hunk #1 succeeded at 14. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/graphics.c b/graphics.c |new file mode 100644 |index 0000000..64e6fe0 |--- /dev/null |+++ b/graphics.c -------------------------- (Creating file graphics.c...) Patching file graphics.c using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/graphics.h b/graphics.h |new file mode 100644 |index 0000000..2e75dea |--- /dev/null |+++ b/graphics.h -------------------------- (Creating file graphics.h...) Patching file graphics.h using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/icat-mini.sh b/icat-mini.sh |new file mode 100755 |index 0000000..0a8ebab |--- /dev/null |+++ b/icat-mini.sh -------------------------- (Creating file icat-mini.sh...) Patching file icat-mini.sh using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/khash.h b/khash.h |new file mode 100644 |index 0000000..f75f347 |--- /dev/null |+++ b/khash.h -------------------------- (Creating file khash.h...) Patching file khash.h using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/kvec.h b/kvec.h |new file mode 100644 |index 0000000..10f1c5b |--- /dev/null |+++ b/kvec.h -------------------------- (Creating file kvec.h...) Patching file kvec.h using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/rowcolumn_diacritics_helpers.c b/rowcolumn_diacritics_helpers.c |new file mode 100644 |index 0000000..829c0fc |--- /dev/null |+++ b/rowcolumn_diacritics_helpers.c -------------------------- (Creating file rowcolumn_diacritics_helpers.c...) Patching file rowcolumn_diacritics_helpers.c using Plan A... Empty context always matches. Hunk #1 succeeded at 1. 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 57c6e96..f1c5299 100644 |--- a/st.c |+++ b/st.c -------------------------- Patching file st.c using Plan A... Hunk #1 succeeded at 19. Hunk #2 succeeded at 37. Hunk #3 succeeded at 118. Hunk #4 succeeded at 220. Hunk #5 succeeded at 238. Hunk #6 succeeded at 626. Hunk #7 succeeded at 835. Hunk #8 succeeded at 851. Hunk #9 succeeded at 911. Hunk #10 succeeded at 920. Hunk #11 succeeded at 964. Hunk #12 succeeded at 1061. Hunk #13 succeeded at 1085. Hunk #14 succeeded at 1264. Hunk #15 succeeded at 1308. Hunk #16 succeeded at 1524. Hunk #17 succeeded at 1537. Hunk #18 succeeded at 1574. Hunk #19 succeeded at 1602. Hunk #20 succeeded at 1992. Hunk #21 succeeded at 2174. Hunk #22 succeeded at 2699. Hunk #23 succeeded at 2892. Hunk #24 succeeded at 2901. Hunk #25 succeeded at 2937. 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 fd3b0d8..c5dd731 100644 |--- a/st.h |+++ b/st.h -------------------------- Patching file st.h using Plan A... Hunk #1 succeeded at 12. Hunk #2 succeeded at 20. Hunk #3 succeeded at 38. Hunk #4 succeeded at 57. Hunk #5 succeeded at 78. Hunk #6 succeeded at 119. Hunk #7 succeeded at 140. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/st.info b/st.info |index efab2cf..ded76c1 100644 |--- a/st.info |+++ b/st.info -------------------------- Patching file st.info using Plan A... Hunk #1 succeeded at 195. Hunk #2 succeeded at 216. Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/win.h b/win.h |index 6de960d..31b3fff 100644 |--- a/win.h |+++ b/win.h -------------------------- Patching file win.h using Plan A... Hunk #1 succeeded at 39. 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 d73152b..6f1bf8c 100644 |--- a/x.c |+++ b/x.c -------------------------- Patching file x.c using Plan A... Hunk #1 succeeded at 4. Hunk #2 succeeded at 21. Hunk #3 succeeded at 62. Hunk #4 succeeded at 90. Hunk #5 succeeded at 154. Hunk #6 succeeded at 232. Hunk #7 succeeded at 341. Hunk #8 succeeded at 414. Hunk #9 succeeded at 527. Hunk #10 succeeded at 817. Hunk #11 succeeded at 950. Hunk #12 succeeded at 1095. Hunk #13 succeeded at 1106. Hunk #14 succeeded at 1234. Hunk #15 succeeded at 1322. Hunk #16 succeeded at 1352. Hunk #17 succeeded at 1464. Hunk #18 succeeded at 1608. Hunk #19 succeeded at 1631. Hunk #20 succeeded at 1707. Hunk #21 succeeded at 1727. Hunk #22 succeeded at 1771. Hunk #23 succeeded at 1998. Hunk #24 succeeded at 2012. Hunk #25 succeeded at 2238. Hunk #26 succeeded at 2289. Hmm... Ignoring the trailing garbage. done