summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-02-10 23:13:40 +0000
committervimboss <devnull@localhost>2006-02-10 23:13:40 +0000
commit807ace863de0a6e6b57364400a15019ab4092b66 (patch)
tree96c54597cc73d47971ac74184f135189284fb281
parent4044bad3314bdb1bc877f670e762b0f9d7b5ae24 (diff)
downloadvim-807ace863de0a6e6b57364400a15019ab4092b66.tar.gz
updated for version 7.0196
-rw-r--r--runtime/doc/cmdline.txt1
-rw-r--r--src/gui.c14
2 files changed, 9 insertions, 6 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 65cdcb3c..7a860a77 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -479,6 +479,7 @@ followed by another command:
:global
:help
:helpfind
+ :lcscope
:make
:normal
:perl
diff --git a/src/gui.c b/src/gui.c
index 75085ced..8113e56e 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -3055,7 +3055,7 @@ gui_xy2colrow(x, y, colp)
gui_menu_cb(menu)
vimmenu_T *menu;
{
- char_u bytes[3 + sizeof(long_u)];
+ char_u bytes[sizeof(long_u)];
/* Don't put events in the input queue now. */
if (hold_gui_events)
@@ -3064,8 +3064,9 @@ gui_menu_cb(menu)
bytes[0] = CSI;
bytes[1] = KS_MENU;
bytes[2] = KE_FILLER;
- add_long_to_buf((long_u)menu, bytes + 3);
- add_to_input_buf(bytes, 3 + sizeof(long_u));
+ add_to_input_buf(bytes, 3);
+ add_long_to_buf((long_u)menu, bytes);
+ add_to_input_buf_csi(bytes, sizeof(long_u));
}
#endif
@@ -3358,7 +3359,7 @@ gui_drag_scrollbar(sb, value, still_dragging)
int old_topfill = curwin->w_topfill;
# endif
#else
- char_u bytes[4 + sizeof(long_u)];
+ char_u bytes[sizeof(long_u)];
int byte_count;
#endif
@@ -3528,8 +3529,9 @@ gui_drag_scrollbar(sb, value, still_dragging)
out_flush();
gui_update_cursor(FALSE, TRUE);
#else
- add_long_to_buf((long)value, bytes + byte_count);
- add_to_input_buf(bytes, byte_count + sizeof(long_u));
+ add_to_input_buf(bytes, byte_count);
+ add_long_to_buf((long_u)value, bytes);
+ add_to_input_buf_csi(bytes, sizeof(long_u));
#endif
}