repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 395c446ae00a3185b1d93903521810e0dad2192f: path_to: revision_to:
commit 395c446ae00a3185b1d93903521810e0dad2192f Author: Marc LehmannDate: Sat Dec 13 11:58:23 2014 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -82,6 +82,8 @@ TODO: warn with a graphical message when env has been modified
- greatly improve colour allocation on colour-starved pseudocolor
displays to avoid read-write cells instead of simply failing
(this is only relevant for antique 8bpp frame buffers).
+ - do not free fade colours when not doing fading (this is likely
+ only relevant for antique 8bpp frame buffers).
9.20 Sat Apr 26 16:22:27 CEST 2014
- (libptytty) fix bug that prevented urxvtd from writing utmp
diff --git a/src/main.C b/src/main.C
--- a/src/main.C
+++ b/src/main.C
@@ -256,7 +256,8 @@ rxvt_term::~rxvt_term ()
{
pix_colors_focused [i].free (this);
#if OFF_FOCUS_FADING
- pix_colors_unfocused [i].free (this);
+ if (rs[Rs_fade])
+ pix_colors_unfocused [i].free (this);
#endif
}
-----END OF PAGE-----