summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2005-03-06 23:42:22 +0000
committervimboss <devnull@localhost>2005-03-06 23:42:22 +0000
commit47cf5e860e32eb1f24bf849e90bacbcf50054c70 (patch)
treed4ffe4b8987061d13c6d7e0b89bd469d6e17b6c2
parent41d4fbaf623b39cedb2f7de6061fc608144fa342 (diff)
downloadvim-47cf5e860e32eb1f24bf849e90bacbcf50054c70.tar.gz
updated for version 7.0056v7.0056v7-0056
-rw-r--r--src/ex_cmds.c4
-rw-r--r--src/proto/misc2.pro1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 419c1981..0a648806 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4663,6 +4663,7 @@ ex_global(eap)
return;
}
+#if 0
#ifdef HAVE_SETJMP_H
/*
* Matching with a regexp may cause a very deep recursive call of
@@ -4682,6 +4683,7 @@ ex_global(eap)
goto jumpend;
}
#endif
+#endif
/*
* pass 1: set marks for each (not) matching line
@@ -4698,10 +4700,12 @@ ex_global(eap)
line_breakcheck();
}
+#if 0
#ifdef HAVE_SETJMP_H
jumpend:
mch_endjmp();
#endif
+#endif
/*
* pass 2: execute the command for each line that has been marked
diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro
index 5cbd2701..41479d0e 100644
--- a/src/proto/misc2.pro
+++ b/src/proto/misc2.pro
@@ -52,6 +52,7 @@ void ga_concat __ARGS((garray_T *gap, char_u *s));
void ga_append __ARGS((garray_T *gap, int c));
int name_to_mod_mask __ARGS((int c));
int simplify_key __ARGS((int key, int *modifiers));
+int handle_x_keys __ARGS((int key));
char_u *get_special_key_name __ARGS((int c, int modifiers));
int trans_special __ARGS((char_u **srcp, char_u *dst, int keycode));
int find_special_key __ARGS((char_u **srcp, int *modp, int keycode));