diff options
author | sabetts <sabetts> | 2003-05-27 18:16:52 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-05-27 18:16:52 +0000 |
commit | 416fd6f8a57877da6700bbb95008dacb84caf4e8 (patch) | |
tree | 518646cdda392351c4f101dde3225af84662d98e /src | |
parent | fa25eb5ee73271cc36fd53c1f660867445f8a3fa (diff) | |
download | ratpoison-416fd6f8a57877da6700bbb95008dacb84caf4e8.zip |
* src/editor.c (input_line_free): free the completions structure
in line.
Diffstat (limited to 'src')
-rw-r--r-- | src/editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.c b/src/editor.c index f300bb3..eb3e443 100644 --- a/src/editor.c +++ b/src/editor.c @@ -99,7 +99,7 @@ input_line_new (char *prompt, char *preinput, completion_fn fn) void input_line_free (rp_input_line *line) { -/* completions_free (line->compl); */ + completions_free (line->compl); free (line->buffer); free (line); } |