Re: [PATCH] completion display interrupt leak handling

2023-06-26 Thread Chet Ramey
On 6/17/23 4:28 AM, Grisha Levit wrote: When readline's display of completion matches is interrupted, the match list is only freed for the '?' completion type but not for '!' and '@' types. I couldn't find a specific reason for that to be the case so hope this patch is an OK fix. Thanks, this

[PATCH] completion display interrupt leak handling

2023-06-17 Thread Grisha Levit
rl_ding (); - FREE (matches); + _rl_free_match_list (matches); matches = (char **)0; full_completion = 1; return (0); From 8eef36cd74caae425e536ead84b1a8cb1cad44b7 Mon Sep 17 00:00:00 2001 From: Grisha Levit Date: Sat, 3 Jun 2023 23:31:16 -0400 Subject: [PATCH] comp