Fix up clang-formatting a bit
Move some characters around to optimize clang-format output.
This commit is contained in:
committed by
Alex Chernyakhovsky
parent
3acaa1c4d3
commit
05c7aceb1e
@@ -98,9 +98,9 @@ public:
|
|||||||
: ip( s_ip ? s_ip : "" ), port( s_port ? s_port : "" ), key( s_key ? s_key : "" ), escape_key( 0x1E ),
|
: ip( s_ip ? s_ip : "" ), port( s_port ? s_port : "" ), key( s_key ? s_key : "" ), escape_key( 0x1E ),
|
||||||
escape_pass_key( '^' ), escape_pass_key2( '^' ), escape_requires_lf( false ), escape_key_help( L"?" ),
|
escape_pass_key( '^' ), escape_pass_key2( '^' ), escape_requires_lf( false ), escape_key_help( L"?" ),
|
||||||
saved_termios(), raw_termios(), window_size(), local_framebuffer( 1, 1 ), new_state( 1, 1 ), overlays(),
|
saved_termios(), raw_termios(), window_size(), local_framebuffer( 1, 1 ), new_state( 1, 1 ), overlays(),
|
||||||
network(), display( true ), /* use TERM environment var to initialize display */
|
network(), display( true ) /* use TERM environment var to initialize display */, connecting_notification(),
|
||||||
connecting_notification(), repaint_requested( false ), lf_entered( false ), quit_sequence_started( false ),
|
repaint_requested( false ), lf_entered( false ), quit_sequence_started( false ), clean_shutdown( false ),
|
||||||
clean_shutdown( false ), verbose( s_verbose )
|
verbose( s_verbose )
|
||||||
{
|
{
|
||||||
if ( predict_mode ) {
|
if ( predict_mode ) {
|
||||||
if ( !strcmp( predict_mode, "always" ) ) {
|
if ( !strcmp( predict_mode, "always" ) ) {
|
||||||
|
|||||||
+2
-4
@@ -60,10 +60,8 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
Select()
|
Select()
|
||||||
: max_fd( -1 )
|
: max_fd( -1 ),
|
||||||
/* These initializations are not used; they are just
|
/* These initializations are not used; they are just here to appease -Weffc++. */
|
||||||
here to appease -Weffc++. */
|
|
||||||
,
|
|
||||||
all_fds( dummy_fd_set ), read_fds( dummy_fd_set ), empty_sigset( dummy_sigset ), consecutive_polls( 0 )
|
all_fds( dummy_fd_set ), read_fds( dummy_fd_set ), empty_sigset( dummy_sigset ), consecutive_polls( 0 )
|
||||||
{
|
{
|
||||||
FD_ZERO( &all_fds );
|
FD_ZERO( &all_fds );
|
||||||
|
|||||||
Reference in New Issue
Block a user