Differences From Artifact [0ce3da22e3]:
- File unix/pterm.c — part of check-in [ba3068e889] at 2002-10-20 07:44:29 on branch trunk — ScrollOnKey wasn't working because I failed to set seen_key_event in pterm.c. (user: simon size: 51937)
To Artifact [0e5c8b6e44]:
- File unix/pterm.c — part of check-in [89a7cd7830] at 2002-10-20 08:23:30 on branch trunk — Implement Richard's really clever idea about bell overload mode: it's automatically deactivated by any keypress, so that command-line beeps from (e.g.) filename completion don't suddenly stop occurring, but it still provides a rapid response to an accidental spewing of a binary to your terminal. (user: simon size: 51940)
| ︙ | |||
782 783 784 785 786 787 788 | 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | - + |
for (i = start; i < end; i++)
printf(" %02x", (unsigned char) output[i]);
printf("\n");
#endif
ldisc_send(output+start, end-start, 1);
show_mouseptr(0);
|
| ︙ |