1. 14 Jul, 2016 1 commit
  2. 13 Jul, 2016 2 commits
  3. 12 Jul, 2016 3 commits
  4. 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
  5. 29 Jun, 2016 4 commits
  6. 07 Jun, 2016 1 commit
  7. 31 May, 2016 1 commit
  8. 25 May, 2016 3 commits
  9. 21 May, 2016 1 commit
  10. 18 May, 2016 1 commit
  11. 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
  12. 03 May, 2016 1 commit
  13. 02 May, 2016 2 commits
  14. 01 May, 2016 2 commits
  15. 26 Apr, 2016 1 commit
  16. 25 Apr, 2016 1 commit
  17. 23 Apr, 2016 2 commits
  18. 17 Apr, 2016 2 commits
  19. 11 Apr, 2016 1 commit
    • Benno Schulenberg's avatar
      screen: concentrate the setting of placewewant · aa1ae0a1
      Benno Schulenberg authored
      Instead of saving the current value of placewewant, then setting the
      new value, and then passing the old value to edit_redraw() in seven
      different places, just let edit_redraw() do this saving and setting.
      
      In the bargain placewewant is now only recalculated when it matters
      -- when allow_update is TRUE -- and not when it's superfluous.
      aa1ae0a1
  20. 05 Apr, 2016 1 commit
  21. 04 Apr, 2016 1 commit
  22. 30 Mar, 2016 3 commits
  23. 29 Mar, 2016 1 commit
  24. 28 Mar, 2016 1 commit
  25. 23 Mar, 2016 2 commits