> gdb/ChangeLog: > > * terminal.h (set_initial_gdb_ttystate): Declare. > * inflow.c (initial_gdb_ttystate): New static variable. > (set_initial_gdb_ttystate): New setter. > (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate > instead of our current terminal state. > * top.c (gdb_init): Call set_initial_gdb_ttystate. Small nit that I noticed just as I glanced at the patch... > +/* Set the initial tty state that is to be inherited by new inferiors. */ > +void > +set_initial_gdb_ttystate (void) > +{ We ask that an empty line between the function's documentation and its implementation be inserted. I have pushed the attached patch as obvious... gdb/ChangeLog: * inflow.c (set_initial_gdb_ttystate): Add empty line after comment documenting function. -- Joel