summaryrefslogtreecommitdiffstats
path: root/debian/patches
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 16:01:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 16:01:58 +0000
commit665d2202ecaf937da98018ad5e4f8d099021e17b (patch)
tree9ade21688a6c76ba16b5ae5843c06924e084005c /debian/patches
parentAdding debian version 3.4-6. (diff)
downloadtmux-debian.tar.xz
tmux-debian.zip
Adding debian version 3.4-7.debian/3.4-7debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/upstream-db1665868f.diff20
2 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
index d315ed5..9346cc3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -6,3 +6,4 @@ upstream-aa17f0e0c1.diff
upstream-3823fa2c57.diff
upstream-424f13fe13.diff
upstream-692ce59bce.diff
+upstream-db1665868f.diff
diff --git a/debian/patches/upstream-db1665868f.diff b/debian/patches/upstream-db1665868f.diff
new file mode 100644
index 0000000..7f2c650
--- /dev/null
+++ b/debian/patches/upstream-db1665868f.diff
@@ -0,0 +1,20 @@
+commit db1665868ff33375f6ea235ffbbb1996d7946c05
+Author: Nicholas Marriott <nicholas.marriott@gmail.com>
+Date: Mon Jun 24 08:11:46 2024 +0000
+
+ Check the underline style colour against the correct default value again
+ (it was changed from 0 to 8), from Romain Francoise.
+
+diff --git a/grid.c b/grid.c
+index edada819e1..7862941999 100644
+--- a/grid.c
++++ b/grid.c
+@@ -88,7 +88,7 @@ grid_need_extended_cell(const struct grid_cell_entry *gce,
+ return (1);
+ if ((gc->fg & COLOUR_FLAG_RGB) || (gc->bg & COLOUR_FLAG_RGB))
+ return (1);
+- if (gc->us != 0) /* only supports 256 or RGB */
++ if (gc->us != 8) /* only supports 256 or RGB */
+ return (1);
+ if (gc->link != 0)
+ return (1);