Changes between Initial Version and Version 6 of Ticket #41


Ignore:
Timestamp:
01/11/14 16:08:27 (10 years ago)
Author:
ossi
Comment:

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  
    77||Release:||All versions||Operating System:||All|| 
    88 
    9 Discussion: 
     9Original submission: 
    1010{{{ 
    11 Fri 24 Mar 2006 02:53:25 PM UTC, original submission: 
    12  
    1311This bugreport is based on information found it the Debian bug reporting system: 
    1412 
     
    1816following code from complete_engine () that causes the problem: 
    1917 
    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  } 
    2929}}} 
    30