1. 29 Aug, 2016 1 commit
  2. 28 Aug, 2016 2 commits
  3. 25 Aug, 2016 1 commit
  4. 14 Aug, 2016 1 commit
  5. 07 Aug, 2016 1 commit
  6. 03 Aug, 2016 1 commit
  7. 02 Aug, 2016 1 commit
  8. 01 Aug, 2016 4 commits
  9. 31 Jul, 2016 1 commit
  10. 30 Jul, 2016 3 commits
  11. 27 Jul, 2016 2 commits
  12. 24 Jul, 2016 2 commits
  13. 16 Jul, 2016 1 commit
  14. 14 Jul, 2016 1 commit
  15. 13 Jul, 2016 2 commits
  16. 12 Jul, 2016 3 commits
  17. 03 Jul, 2016 1 commit
    • 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
  18. 29 Jun, 2016 4 commits
  19. 07 Jun, 2016 1 commit
  20. 31 May, 2016 1 commit
  21. 25 May, 2016 3 commits
  22. 21 May, 2016 1 commit
  23. 18 May, 2016 1 commit
  24. 16 May, 2016 1 commit
    • Benno Schulenberg's avatar
      statusbar: prevent error messages from overwriting each other · 2535f51e
      Benno Schulenberg authored
      If during startup there are multiple error messages, currently only the
      last one remains and can be read.  To improve on that, introduce a short
      pause between error messages -- even if it's not enough to read them all,
      at least the user will be aware that there are multiple ones.
      
      This also causes a few error messages to beep that currently don't beep,
      such as when a file is unwritable.
      2535f51e