summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-02-13 09:58:14 +0000
committerBram Moolenaar <Bram@vim.org>2008-02-13 09:58:14 +0000
commite21877ae759827ce9b4422c55dce33237dd175a4 (patch)
tree1b03dbc5e30b233fc16eed2ed81c4e6a1bc62d0e
parent8b131505eb9b96e5a670a24fdd7db00b84fb26b7 (diff)
downloadvim-git-e21877ae759827ce9b4422c55dce33237dd175a4.tar.gz
updated for version 7.1-247v7.1.247
-rw-r--r--src/misc1.c21
-rw-r--r--src/version.c2
2 files changed, 14 insertions, 9 deletions
diff --git a/src/misc1.c b/src/misc1.c
index df2ccaaf8..8019cafb0 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -2270,13 +2270,16 @@ del_bytes(count, fixpos_arg, use_delcombine)
/*
* If the old line has been allocated the deletion can be done in the
* existing line. Otherwise a new line has to be allocated
+ * Can't do this when using Netbeans, because we would need to invoke
+ * netbeans_removed(), which deallocates the line. Let ml_replace() take
+ * care of notifiying Netbeans.
*/
- was_alloced = ml_line_alloced(); /* check if oldp was allocated */
#ifdef FEAT_NETBEANS_INTG
- if (was_alloced && usingNetbeans)
- netbeans_removed(curbuf, lnum, col, count);
- /* else is handled by ml_replace() */
+ if (usingNetbeans)
+ was_alloced = FALSE;
+ else
#endif
+ was_alloced = ml_line_alloced(); /* check if oldp was allocated */
if (was_alloced)
newp = oldp; /* use same allocated memory */
else
@@ -3978,7 +3981,7 @@ vim_getenv(name, mustfree)
/* remove trailing path separator */
#ifndef MACOS_CLASSIC
/* With MacOS path (with colons) the final colon is required */
- /* to avoid confusion between absoulute and relative path */
+ /* to avoid confusion between absolute and relative path */
if (pend > p && after_pathsep(p, pend))
--pend;
#endif
@@ -5689,7 +5692,7 @@ cin_is_cpp_baseclass(col)
else if (lookfor_ctor_init || class_or_struct)
{
/* we have something found, that looks like the start of
- * cpp-base-class-declaration or contructor-initialization */
+ * cpp-base-class-declaration or constructor-initialization */
cpp_base_class = TRUE;
lookfor_ctor_init = class_or_struct = FALSE;
*col = 0;
@@ -6146,7 +6149,7 @@ get_c_indent()
pos_T our_paren_pos;
char_u *start;
int start_brace;
-#define BRACE_IN_COL0 1 /* '{' is in comumn 0 */
+#define BRACE_IN_COL0 1 /* '{' is in column 0 */
#define BRACE_AT_START 2 /* '{' is at start of line */
#define BRACE_AT_END 3 /* '{' is at end of line */
linenr_T ourscope;
@@ -6369,7 +6372,7 @@ get_c_indent()
if (curwin->w_cursor.lnum > 1)
{
/* If the start comment string matches in the previous
- * line, use the indent of that line pluss offset. If
+ * line, use the indent of that line plus offset. If
* the middle comment string matches in the previous
* line, use the indent of that line. XXX */
look = skipwhite(ml_get(curwin->w_cursor.lnum - 1));
@@ -8222,7 +8225,7 @@ get_lisp_indent()
if (*that && *that != ';') /* not a comment line */
{
- /* test *that != '(' to accomodate first let/do
+ /* test *that != '(' to accommodate first let/do
* argument if it is more than one line */
if (!vi_lisp && *that != '(' && *that != '[')
firsttry++;
diff --git a/src/version.c b/src/version.c
index b72eb2a76..740c1358e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 247,
+/**/
246,
/**/
245,