Here's a patchette to update the parameter lists for a
couple of the functions in gpmevent.c. The functions themselves
look rather dubious to me - perhaps someone with knowledge of
GPM could take a look at them and maybe do something about
them?
Regards,
Alastair.
src/ChangeLog:
2000-07-17 Alastair J. Houghton <ajhoughton(a)lineone.net>
* gpmevent.c (tty_selection_exists_p):
* gpmevent.c (tty_own_selection):
Updated parameter lists.
--- ../orig/xemacs-21.2/src/gpmevent.c Mon Mar 13 07:27:58 2000
+++ xemacs-21.2/src/gpmevent.c Mon Jul 17 13:39:19 2000
@@ -309,7 +309,7 @@
}
static Lisp_Object
-tty_selection_exists_p (Lisp_Object selection)
+tty_selection_exists_p (Lisp_Object selection, Lisp_Object selection_type)
{
return (Qt);
}
@@ -317,7 +317,8 @@
#if 0
static Lisp_Object
-tty_own_selection (Lisp_Object selection_name, Lisp_Object selection_value)
+tty_own_selection (Lisp_Object selection_name, Lisp_Object selection_value,
+ Lisp_Object how_to_add, Lisp_Object selection_type)
{
/* There is no way to do this cleanly - the GPM selection
** 'protocol' (actually the TIOCLINUX ioctl) requires a start and
--
____________________________________________________________
Alastair Houghton ajhoughton(a)lineone.net
Show replies by date
Thanks. I've applied your patch.
With this, I finally get clean builds (about 100 of them!) on all of
the platforms I currently test.
Martin