diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-01-19 14:59:56 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-01-19 14:59:56 +0100 |
commit | 2660c0ea9be48b57b5b7f613fdd6add99c643c80 (patch) | |
tree | 4516eeafe1e08e8386f4b1260d3f15ea5bdea75c /src/netbeans.c | |
parent | 3ea38ef23944f3d49c126b94708e2d4a540bca42 (diff) | |
download | vim-2660c0ea9be48b57b5b7f613fdd6add99c643c80.zip |
updated for version 7.2.333
Problem: Warnings from static code analysis.
Solution: Small changes to various lines. (Dominique Pelle)
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index b013d7780..a8a690112 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -873,7 +873,7 @@ nb_parse_cmd(char_u *cmd) { #ifdef NBDEBUG /* - * This happens because the ExtEd can send a cammand or 2 after + * This happens because the ExtEd can send a command or 2 after * doing a stopDocumentListen command. It doesn't harm anything * so I'm disabling it except for debugging. */ @@ -1174,7 +1174,7 @@ nb_quote(char_u *txt) break; } } - *q++ = '\0'; + *q = '\0'; return buf; } @@ -3070,7 +3070,7 @@ netbeans_removed( } /* - * Send netbeans an unmodufied command. + * Send netbeans an unmodified command. */ void netbeans_unmodified(buf_T *bufp UNUSED) @@ -3366,7 +3366,7 @@ netbeans_gutter_click(linenr_T lnum) /* - * Add a sign of the reqested type at the requested location. + * Add a sign of the requested type at the requested location. * * Reverse engineering: * Apparently an annotation is defined the first time it is used in a buffer. |