Changes between Initial Version and Version 2 of Ticket #3870
- Timestamp:
- 10/28/17 16:12:44 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3870
- Property Status changed from new to accepted
- Property Owner set to andrew_b
- Property Milestone changed from Future Releases to 4.8.20
-
Ticket #3870 – Description
initial v2 4 4 5 5 case quick_input: 6 {{{ 6 7 if ((quick_widget->u.input.completion_flags & INPUT_COMPLETE_CD) != 0) 8 }}} 7 9 8 10 But quick_widget is iteration variable from previous cycle and this variable always initialized to QUICK_END. 9 11 10 12 I suggest following patch 13 {{{ 11 14 diff --git a/lib/widget/quick.c b/lib/widget/quick.c 12 15 index 555d79c4c..3a3d014fb 100644 … … 22 25 tilde_expand (INPUT (item->widget)->buffer); 23 26 else 24 27 }}}