diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-04-15 15:32:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-04-15 15:32:25 +0200 |
commit | f8de161090c9075973bb6e75f88a303d7aa1ddfc (patch) | |
tree | 64c176c33c664870697d989b3ca0674c12b3f657 /src/os_unix.c | |
parent | 54c34fa6f51afab0fa5a153341cfc91fe7b4eebf (diff) | |
download | vim-git-f8de161090c9075973bb6e75f88a303d7aa1ddfc.tar.gz |
updated for version 7.3.899v7.3.899
Problem: #if indents are off.
Solution: Fix the indents.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 9459aa1cf..f878fa957 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -3493,13 +3493,14 @@ mch_setmouse(on) * 4 = Windows Cross Hair * 5 = Windows UP Arrow */ -#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */ +# ifdef JSBTERM_MOUSE_NONADVANCED + /* Disables full feedback of pointer movements */ out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); -#else +# else out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); -#endif +# endif ison = TRUE; } else |