1. 20 Jan, 2017 1 commit
    • Benno Schulenberg's avatar
      painting: do not let a match for 'end' overlap a match for 'start' · 7e5524bb
      Benno Schulenberg authored
      During precalculation and in step_two, we begin looking for an end
      match only after the full start match, not merely one byte beyond
      its starting point.  So do that too when searching backward for an
      unpaired start match.
      
      Also, index can never be zero here, because if the match was of length
      zero, this piece of code will have been skipped by the preceding goto.
      So we can always use REG_NOTBOL here.
      
      (That goto is wrong, by the way: https://savannah.gnu.org/bugs/?50078,
      but that will follow later.)
      7e5524bb
  2. 19 Jan, 2017 2 commits
  3. 17 Jan, 2017 1 commit
    • Benno Schulenberg's avatar
      search: begin from where we are, to be able to find the first \B · c88d7ce5
      Benno Schulenberg authored
      A search should start at the place of the cursor, not one step beyond,
      so that the non-word boundary between the current character and the next
      will be found.  Starting one step beyond the current character, as was
      done until now, would find the non-word boundary between the next and
      the overnext character as the first one.
      c88d7ce5
  4. 13 Jan, 2017 6 commits
  5. 12 Jan, 2017 6 commits
  6. 11 Jan, 2017 3 commits
  7. 10 Jan, 2017 2 commits
  8. 09 Jan, 2017 9 commits
  9. 08 Jan, 2017 10 commits