summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 18:13:55 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 18:13:55 +0100
commit02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f (patch)
tree1a6c1a439d0fff8f37f4a814f180ca26059100c9
parent68c2f638e65d914dc6e84eb7ce2624f08af525c0 (diff)
patch 7.4.1209v7.4.1209
Problem: Can't build with Athena. Solution: Fix function declarations.
-rw-r--r--src/gui_at_fs.c13
-rw-r--r--src/gui_at_sb.c14
-rw-r--r--src/gui_athena.c6
-rw-r--r--src/gui_x11.c6
-rw-r--r--src/version.c2
5 files changed, 25 insertions, 16 deletions
diff --git a/src/gui_at_fs.c b/src/gui_at_fs.c
index 3c0c992cf3..0606fba9b3 100644
--- a/src/gui_at_fs.c
+++ b/src/gui_at_fs.c
@@ -495,7 +495,7 @@ SFunselect(void)
static int SFcompareLogins(const void *p, const void *q);
static int
-SFcompareLogins(const void *p, *q)
+SFcompareLogins(const void *p, const void *q)
{
return strcmp(((SFLogin *)p)->name, ((SFLogin *)q)->name);
}
@@ -571,7 +571,7 @@ SFgetHomeDirs(void)
static int SFfindHomeDir(char *begin, char *end);
static int
-SFfindHomeDir(char *begin, *end)
+SFfindHomeDir(char *begin, char *end)
{
char save;
char *theRest;
@@ -2709,9 +2709,12 @@ vim_SelFile(
char *prompt,
char *init_path,
int (*show_entry)(),
- int x, y,
- guicolor_T fg, bg,
- guicolor_T scroll_fg, scroll_bg) /* The "Scrollbar" group colors */
+ int x,
+ int y,
+ guicolor_T fg,
+ guicolor_T bg,
+ guicolor_T scroll_fg,
+ guicolor_T scroll_bg) /* The "Scrollbar" group colors */
{
static int firstTime = 1;
XEvent event;
diff --git a/src/gui_at_sb.c b/src/gui_at_sb.c
index 98caad58e2..189647a481 100644
--- a/src/gui_at_sb.c
+++ b/src/gui_at_sb.c
@@ -234,7 +234,8 @@ ClassInitialize(void)
static void
FillArea(
ScrollbarWidget sbw,
- Position top, bottom,
+ Position top,
+ Position bottom,
int fill,
int draw_shadow)
{
@@ -641,7 +642,7 @@ Redisplay(Widget w, XEvent *event, Region region)
static Boolean
-CompareEvents(XEvent *oldEvent, *newEvent)
+CompareEvents(XEvent *oldEvent, XEvent *newEvent)
{
#define Check(field) if (newEvent->field != oldEvent->field) return False;
@@ -713,7 +714,8 @@ LookAhead(Widget w, XEvent *event)
static void
ExtractPosition(
XEvent *event,
- Position *x, *y, /* RETURN */
+ Position *x, /* RETURN */
+ Position *y, /* RETURN */
unsigned int *state) /* RETURN */
{
switch (event->type)
@@ -816,7 +818,7 @@ RepeatNotify(XtPointer client_data, XtIntervalId *idp UNUSED)
* Same as above, but for floating numbers.
*/
static float
-FloatInRange(float num, small, big)
+FloatInRange(float num, float small, float big)
{
return (num < small) ? small : ((num > big) ? big : num);
}
@@ -984,7 +986,7 @@ EndScroll(
}
static float
-FractionLoc(ScrollbarWidget sbw, int x, y)
+FractionLoc(ScrollbarWidget sbw, int x, int y)
{
int margin;
float height, width;
@@ -1165,7 +1167,7 @@ _Xaw3dDrawShadows(
* Set the scroll bar to the given location.
*/
void
-vim_XawScrollbarSetThumb(Widget w, double top, shown, max)
+vim_XawScrollbarSetThumb(Widget w, double top, double shown, double max)
{
ScrollbarWidget sbw = (ScrollbarWidget) w;
diff --git a/src/gui_athena.c b/src/gui_athena.c
index 28959786cd..941c74e72e 100644
--- a/src/gui_athena.c
+++ b/src/gui_athena.c
@@ -89,7 +89,8 @@ static int puller_width = 0;
static void
gui_athena_scroll_cb_jump(
Widget w UNUSED,
- XtPointer client_data, call_data)
+ XtPointer client_data,
+ XtPointer call_data)
{
scrollbar_T *sb, *sb_info;
long value;
@@ -124,7 +125,8 @@ gui_athena_scroll_cb_jump(
static void
gui_athena_scroll_cb_scroll(
Widget w UNUSED,
- XtPointer client_data, call_data)
+ XtPointer client_data,
+ XtPointer call_data)
{
scrollbar_T *sb, *sb_info;
long value;
diff --git a/src/gui_x11.c b/src/gui_x11.c
index af3c3a919d..e6e6f614fa 100644
--- a/src/gui_x11.c
+++ b/src/gui_x11.c
@@ -1761,7 +1761,7 @@ gui_mch_exit(int rc UNUSED)
* Get the position of the top left corner of the window.
*/
int
-gui_mch_get_winpos(int *x, *y)
+gui_mch_get_winpos(int *x, int *y)
{
Dimension xpos, ypos;
@@ -1779,7 +1779,7 @@ gui_mch_get_winpos(int *x, *y)
* coordinates.
*/
void
-gui_mch_set_winpos(int x, y)
+gui_mch_set_winpos(int x, int y)
{
XtVaSetValues(vimShell,
XtNx, x,
@@ -3181,7 +3181,7 @@ static long_u blink_offtime = 250;
static XtIntervalId blink_timer = (XtIntervalId)0;
void
-gui_mch_set_blinking(long waittime, on, off)
+gui_mch_set_blinking(long waittime, long on, long off)
{
blink_waittime = waittime;
blink_ontime = on;
diff --git a/src/version.c b/src/version.c
index 5cc31d5dfe..2117796937 100644
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1209,
+/**/
1208,
/**/
1207,