* fhandler_termios.cc (fhandler_termios::line_edit): Use special case '%0c'
handling to print non-printable characters using hex notation. * smallprint.cc (__small_vsprintf): Semi-reimplement printing of non-printable characters in hex but only when padding is specified. * dcrt0.cc (dll_crt0_0): Remove tty_list initialization. * shared.cc (memory_init): Initialize tty_list here. * path.cc (path_conv::check): Remove unneeded parentheses from if check.
This commit is contained in:
@ -237,7 +237,7 @@ fhandler_termios::line_edit (const char *rptr, int nread, termios& ti)
|
||||
{
|
||||
c = *rptr++;
|
||||
|
||||
termios_printf ("char %c", c);
|
||||
paranoid_printf ("char %0c", c);
|
||||
|
||||
/* Check for special chars */
|
||||
|
||||
|
Reference in New Issue
Block a user