diff options
author | Christopher Faylor <me@cgf.cx> | 2012-08-16 23:34:45 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-08-16 23:34:45 +0000 |
commit | 46f5dd59581f3405e56a48f351ed97a0af0f70ef (patch) | |
tree | 4094a58649e103f8149c09446384bed059803d85 /winsup/cygwin/fhandler_console.cc | |
parent | 00caa48b917d9c300c70403b3a9ea665a8f67d26 (diff) | |
download | cygnal-46f5dd59581f3405e56a48f351ed97a0af0f70ef.tar.gz cygnal-46f5dd59581f3405e56a48f351ed97a0af0f70ef.tar.bz2 cygnal-46f5dd59581f3405e56a48f351ed97a0af0f70ef.zip |
whitespace cleanup
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r-- | winsup/cygwin/fhandler_console.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc index 0dcd1262b..faedd8ab4 100644 --- a/winsup/cygwin/fhandler_console.cc +++ b/winsup/cygwin/fhandler_console.cc @@ -591,7 +591,7 @@ fhandler_console::read (void *pv, size_t& buflen) if (dev_state.ext_mouse_mode6 /* distinguish release */ && mouse_event.dwButtonState < dev_state.dwLastButtonState) - mode6_term = 'm'; + mode6_term = 'm'; dev_state.last_button_code = b; @@ -646,7 +646,7 @@ fhandler_console::read (void *pv, size_t& buflen) __small_sprintf (tmp, "\033[M%c", b + ' '); nread = 4; - /* the neat nested encoding function of mintty + /* the neat nested encoding function of mintty does not compile in g++, so let's unfold it: */ if (xcode < 0x80) tmp [nread++] = xcode; @@ -692,9 +692,9 @@ fhandler_console::read (void *pv, size_t& buflen) if (dev_state.use_focus) { if (input_rec.Event.FocusEvent.bSetFocus) - __small_sprintf (tmp, "\033[I"); + __small_sprintf (tmp, "\033[I"); else - __small_sprintf (tmp, "\033[O"); + __small_sprintf (tmp, "\033[O"); toadd = tmp; nread = 3; |