diff options
author | James Booth <boothj5@gmail.com> | 2014-09-13 21:36:16 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-09-13 21:36:16 +0100 |
commit | d8400a5fd77bcb019df1f419d4ad3e4457c44d96 (patch) | |
tree | 15644d7659049591f840984a15d17995bb0f54c1 /src/xmpp | |
parent | 128a4a811f440e4207eb209c411d9c60110b57e5 (diff) | |
download | profani-tty-d8400a5fd77bcb019df1f419d4ad3e4457c44d96.tar.gz |
Initialise form field tag autocomplete
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/form.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xmpp/form.c b/src/xmpp/form.c index 59aa6304..ce1c4eb2 100644 --- a/src/xmpp/form.c +++ b/src/xmpp/form.c @@ -80,6 +80,7 @@ _form_new(void) form->fields = NULL; form->var_to_tag = NULL; form->tag_to_var = NULL; + form->tag_ac = NULL; return form; } |