summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-04-15 15:32:25 +0200
committerBram Moolenaar <bram@vim.org>2013-04-15 15:32:25 +0200
commit4fd6ce1558b478b597da62110303680d7803ae8c (patch)
treedfcf14a803a3d75413938e6fbaa4eedd3d4a366c
parent560bc403f6cc28efaf5e7b248f382c0d0bb15464 (diff)
downloadvim-4fd6ce1558b478b597da62110303680d7803ae8c.tar.gz
updated for version 7.3.899v7.3.899v7-3-899
Problem: #if indents are off. Solution: Fix the indents.
-rw-r--r--src/os_unix.c7
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 9459aa1c..f878fa95 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
diff --git a/src/version.c b/src/version.c
index 06a1ffc6..4a5a0be9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 899,
+/**/
898,
/**/
897,