summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-06-20 09:40:11 +0000
committervimboss <devnull@localhost>2008-06-20 09:40:11 +0000
commit5ddae283006b065523298ba025a81afb3dae363a (patch)
tree2874c73c50f4afc991ab815294465041e16445f7
parentf76bf296d5169630dca7e4ccd7ccbeac8861790f (diff)
downloadvim-5ddae283006b065523298ba025a81afb3dae363a.tar.gz
updated for version 7.1-317v7.1.317v7-1-317
-rw-r--r--src/gui_motif.c20
-rw-r--r--src/testdir/test65.in0
-rw-r--r--src/testdir/test65.ok0
-rw-r--r--src/version.c2
4 files changed, 12 insertions, 10 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c
index 6060b585..8285b167 100644
--- a/src/gui_motif.c
+++ b/src/gui_motif.c
@@ -686,8 +686,8 @@ manage_centered(dialog_child)
/* Temporarily set value of XmNmappedWhenManaged
to stop the dialog from popping up right away */
- XtVaGetValues(shell, XmNmappedWhenManaged, &mappedWhenManaged, 0);
- XtVaSetValues(shell, XmNmappedWhenManaged, False, 0);
+ XtVaGetValues(shell, XmNmappedWhenManaged, &mappedWhenManaged, NULL);
+ XtVaSetValues(shell, XmNmappedWhenManaged, False, NULL);
XtManageChild(dialog_child);
@@ -723,7 +723,7 @@ manage_centered(dialog_child)
XtMapWidget(shell);
/* Restore the value of XmNmappedWhenManaged */
- XtVaSetValues(shell, XmNmappedWhenManaged, mappedWhenManaged, 0);
+ XtVaSetValues(shell, XmNmappedWhenManaged, mappedWhenManaged, NULL);
}
#if defined(FEAT_MENU) || defined(FEAT_SUN_WORKSHOP) \
@@ -1993,7 +1993,7 @@ do_mnemonic(Widget w, unsigned int keycode)
{
if (XtClass(w) == xmRowColumnWidgetClass)
{
- XtVaGetValues(w, XmNrowColumnType, &rowColType, 0);
+ XtVaGetValues(w, XmNrowColumnType, &rowColType, NULL);
isMenu = (rowColType != (unsigned char)XmWORK_AREA);
}
else
@@ -2001,14 +2001,14 @@ do_mnemonic(Widget w, unsigned int keycode)
if (!isMenu)
{
XtVaGetValues(w, XmNchildren, &children, XmNnumChildren,
- &numChildren, 0);
+ &numChildren, NULL);
for (i = 0; i < numChildren; i++)
do_mnemonic(children[i], keycode);
}
}
else
{
- XtVaGetValues(w, XmNmnemonic, &mnemonic, 0);
+ XtVaGetValues(w, XmNmnemonic, &mnemonic, NULL);
if (mnemonic != '\0')
{
mneString[0] = mnemonic;
@@ -2019,7 +2019,7 @@ do_mnemonic(Widget w, unsigned int keycode)
if (XtClass(w) == xmLabelWidgetClass
|| XtClass(w) == xmLabelGadgetClass)
{
- XtVaGetValues(w, XmNuserData, &userData, 0);
+ XtVaGetValues(w, XmNuserData, &userData, NULL);
if (userData != NULL && XtIsWidget(userData))
XmProcessTraversal(userData, XmTRAVERSE_CURRENT);
}
@@ -2073,7 +2073,7 @@ add_mnemonic_grabs(Widget dialog, Widget w)
{
if (XtClass(w) == xmRowColumnWidgetClass)
{
- XtVaGetValues(w, XmNrowColumnType, &rowColType, 0);
+ XtVaGetValues(w, XmNrowColumnType, &rowColType, NULL);
isMenu = (rowColType != (unsigned char)XmWORK_AREA);
}
else
@@ -2081,14 +2081,14 @@ add_mnemonic_grabs(Widget dialog, Widget w)
if (!isMenu)
{
XtVaGetValues(w, XmNchildren, &children, XmNnumChildren,
- &numChildren, 0);
+ &numChildren, NULL);
for (i = 0; i < numChildren; i++)
add_mnemonic_grabs(dialog, children[i]);
}
}
else
{
- XtVaGetValues(w, XmNmnemonic, &mnemonic, 0);
+ XtVaGetValues(w, XmNmnemonic, &mnemonic, NULL);
if (mnemonic != '\0')
{
mneString[0] = mnemonic;
diff --git a/src/testdir/test65.in b/src/testdir/test65.in
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/testdir/test65.in
diff --git a/src/testdir/test65.ok b/src/testdir/test65.ok
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/testdir/test65.ok
diff --git a/src/version.c b/src/version.c
index fbde4b46..508d8478 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 */
/**/
+ 317,
+/**/
316,
/**/
315,