Changes between Initial Version and Version 6 of Ticket #41
- Timestamp:
- 01/11/14 16:08:27 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41
- Property Status changed from new to closed
- Property Reporter changed from slavazanko to ptsekov
- Property Branch state changed from to no branch
- Property Milestone changed from to VFS Standardisation
- Property Resolution changed from to duplicate
- Property Severity changed from to no branch
-
Ticket #41 – Description
initial v6 7 7 ||Release:||All versions||Operating System:||All|| 8 8 9 Discussion:9 Original submission: 10 10 {{{ 11 Fri 24 Mar 2006 02:53:25 PM UTC, original submission:12 13 11 This bugreport is based on information found it the Debian bug reporting system: 14 12 … … 18 16 following code from complete_engine () that causes the problem: 19 17 20 if (!in->completions){ 21 end = in->point; 22 for (start = end ? end - 1 : 0; start > -1; start--) 23 if (strchr (" \t;|<>", in->buffer [start])) 24 break; 25 if (start < end) 26 start++; 27 in->completions = try_complete (in->buffer, &start, &end, in->completion_flags); 28 } 18 if (!in->completions) 19 { 20 end = in->point; 21 for (start = end ? end - 1 : 0; start > -1; start--) 22 if (strchr (" \t;|<>", in->buffer[start])) 23 break; 24 if (start < end) 25 start++; 26 in->completions = 27 try_complete (in->buffer, &start, &end, in->completion_flags); 28 } 29 29 }}} 30