diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Src/Zle/zle_utils.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2020-06-27 Daniel Shahaf <d.s@daniel.shahaf.name> + * unposted (after 46068): Src/Zle/zle_utils.c: Fix a compiler + warning. + * 46072 + 46136: Doc/Zsh/contrib.yo, Doc/Zsh/zle.yo, Functions/Misc/add-zle-hook-widget, Src/Zle/zle_thingy.c, Test/X04zlehighlight.ztst: Add the 'zle $widget -f nolast' diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c index 927b88bba..c85f8450d 100644 --- a/Src/Zle/zle_utils.c +++ b/Src/Zle/zle_utils.c @@ -569,7 +569,7 @@ free_region_highlights_memos(void) for (rhp = region_highlights; rhp < region_highlights + n_region_highlights; rhp++) { - zfree(rhp->memo, 0); + zfree((char*) rhp->memo, 0); } } |