1. 22 Jul, 2016 1 commit
  2. 21 Jul, 2016 4 commits
  3. 17 Jul, 2016 2 commits
  4. 16 Jul, 2016 4 commits
  5. 14 Jul, 2016 3 commits
  6. 13 Jul, 2016 7 commits
  7. 12 Jul, 2016 5 commits
  8. 11 Jul, 2016 2 commits
  9. 10 Jul, 2016 4 commits
  10. 04 Jul, 2016 6 commits
  11. 03 Jul, 2016 2 commits
    • Benno Schulenberg's avatar
      color: push the resets further when start and end match are equal · 4af1da7d
      Benno Schulenberg authored
      When for a multiline syntax-coloring rule the starting regex matches at
      the exact same spot as the ending regex, do a second round of resets, so
      that reevaluation starts further back and gets a few more things right.
      
      This mildly fixes https://savannah.gnu.org/bugs/?47420.
      4af1da7d
    • Benno Schulenberg's avatar
      tweaks: rename a variable to be more accurate · 528b79b5
      Benno Schulenberg authored
      When we get a ^J as verbatim input, it is not possible to include it
      into the file buffer or the prompt answer, because this would mean
      adding an encoded null to the buffer or answer, and that is not what
      the user intended.  One option would have been to simply ignore a ^J
      in verbatim input.  But the choice has been made to act the same way
      as when the ^J (0x0A) is found in the file data: start a new line.
      
      That is the same response as to the Enter key, yes -- but the code
      for the Enter key is ^M (0x0D), not ^J.  So, to be more precise,
      rename the relevant variable from 'got_enter' to 'got_newline'.
      528b79b5