summaryrefslogtreecommitdiff
path: root/src/proto/netbeans.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-01-19 15:13:14 +0100
committerBram Moolenaar <Bram@vim.org>2010-01-19 15:13:14 +0100
commit8065d7fd9c470e4672bad7fc8925b4f25c80dd6e (patch)
tree81bc63f02b74f975c82203eefcc256270eefe773 /src/proto/netbeans.pro
parent2660c0ea9be48b57b5b7f613fdd6add99c643c80 (diff)
downloadvim-git-8065d7fd9c470e4672bad7fc8925b4f25c80dd6e.tar.gz
updated for version 7.2.334v7.2.334
Problem: Postponing keys in Netbeans interface does not work properly. Solution: Store the key string instead of the number. Avoid an infinite loop. (Mostly by Xavier de Gaye)
Diffstat (limited to 'src/proto/netbeans.pro')
-rw-r--r--src/proto/netbeans.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/netbeans.pro b/src/proto/netbeans.pro
index bb1a1b521..789ac9f48 100644
--- a/src/proto/netbeans.pro
+++ b/src/proto/netbeans.pro
@@ -16,7 +16,7 @@ void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u
void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len));
void netbeans_unmodified __ARGS((buf_T *bufp));
void netbeans_button_release __ARGS((int button));
-void netbeans_keycommand __ARGS((int key));
+int netbeans_keycommand __ARGS((int key));
void netbeans_save_buffer __ARGS((buf_T *bufp));
void netbeans_deleted_all_lines __ARGS((buf_T *bufp));
int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot));