summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-08-30 10:51:14 +0000
committervimboss <devnull@localhost>2007-08-30 10:51:14 +0000
commit7b0e6c5cd8d9e155d5952d0c7b80140904bdb813 (patch)
tree56ff28146017d60f14737ddb5409b3ccdb569fc2
parentaae150996f7432f6db28f06c8a580fb2f0a19ea7 (diff)
downloadvim-7b0e6c5cd8d9e155d5952d0c7b80140904bdb813.tar.gz
updated for version 7.1-092v7.1.092v7-1-092
-rw-r--r--src/gui_mac.c6
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c
index 9205e33d..bfa3b2a1 100644
--- a/src/gui_mac.c
+++ b/src/gui_mac.c
@@ -3149,7 +3149,7 @@ gui_mch_set_winpos(int x, int y)
/* TODO: Should make sure the window is move within range
* e.g.: y > ~16 [Menu bar], x > 0, x < screen width
*/
- MoveWindowStructure(gui.VimWindow, x, y, TRUE);
+ MoveWindowStructure(gui.VimWindow, x, y);
}
void
@@ -5293,7 +5293,7 @@ gui_mch_dialog(
short itemType;
short useIcon;
short width;
- short totalButtonWidth = 0; /* the width of all button together
+ short totalButtonWidth = 0; /* the width of all buttons together
including spacing */
short widestButton = 0;
short dfltButtonEdge = 20; /* gut feeling */
@@ -5483,7 +5483,7 @@ gui_mch_dialog(
{
macMoveDialogItem(theDialog, button, buttonItm.box.left, buttonItm.box.top, &box);
- /* With vertical, it's better to have all button the same lenght */
+ /* With vertical, it's better to have all buttons the same length */
if (vertical)
{
macSizeDialogItem(theDialog, button, widestButton, 0);
diff --git a/src/version.c b/src/version.c
index c04c5e8e..51376889 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 */
/**/
+ 92,
+/**/
91,
/**/
90,