Merge branch 'master' of github.com:tio/tio

This commit is contained in:
Martin Lund 2016-05-20 15:18:58 +02:00
commit dc455eb0c2
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ Changes since tio v1.12:
A new key command "ctrl-t i" is added to allow the user to display the A new key command "ctrl-t i" is added to allow the user to display the
various session settings information (baudrate, databits, log file, etc.). various session settings information (baudrate, databits, log file, etc.).
This is usefull in case you have a running session but have forgotten This is useful in case you have a running session but have forgotten
what the settings are. what the settings are.
@ -45,7 +45,7 @@ Changes since tio v1.11:
send the ctrl-t key code. This is inspired by screen which does similar send the ctrl-t key code. This is inspired by screen which does similar
to send its command key code (ctrl-a a). to send its command key code (ctrl-a a).
This change also allows to easier add new key commands if needed. This change also eases adding new key commands if needed.
Updated man page accordingly. Updated man page accordingly.

View file

@ -77,7 +77,7 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c
tio_printf("Parity: %s", option.parity); tio_printf("Parity: %s", option.parity);
tio_printf("Output delay: %d", option.output_delay); tio_printf("Output delay: %d", option.output_delay);
if (option.log) if (option.log)
color_printf("Log file: %s", option.log_filename); tio_printf("Log file: %s", option.log_filename);
*forward = false; *forward = false;
break; break;
case KEY_Q: case KEY_Q: