diff --git a/lib/libXi/ChangeLog b/lib/libXi/ChangeLog index a59a9ecc3..deccbbec8 100644 --- a/lib/libXi/ChangeLog +++ b/lib/libXi/ChangeLog @@ -1,3 +1,114 @@ +commit e05da79a98775edb91ffe3de3b413f156bc4d6e7 +Author: Matt Turner +Date: Wed Jun 19 12:42:33 2019 -0400 + + libXi 1.7.10 + + Signed-off-by: Matt Turner + +commit dd5cedb7cd631cf4aeaadfd9cb993f0086857dbd +Author: Matt Turner +Date: Wed Jun 19 12:40:46 2019 -0400 + + Replace open-coded FP3232_TO_DOUBLE + + Signed-off-by: Matt Turner + +commit a42ee93c10bf9a63c22e0642d6e51877fba8dae5 +Author: Alexander Bersenev +Date: Mon Jun 17 22:56:43 2019 +0500 + + Fix the FIXME in XIValuatorClass case of copy_classes function in XExtInt.c + + In addition fix FP3232_TO_DOUBLE macro to correctly compute the fractional + part. + + This fixes glitchy scrolling in Qt applications when the application was + just activated or was scrolled in the backgroud. Qt uses XIQueryDevice + call to synchronize internal scroll location with an actual one. + + Bug: https://gitlab.freedesktop.org/xorg/lib/libxi/issues/10 + +commit 3e38d823a162c21492ac243924325730d4ea61bf +Author: Alan Coopersmith +Date: Fri Dec 7 19:43:13 2018 -0800 + + Update configure.ac bug URL for gitlab migration + + Signed-off-by: Alan Coopersmith + +commit e020870b1e322e3458c1c18a456661f1951cab70 +Author: Alan Coopersmith +Date: Mon Nov 19 22:23:32 2018 -0800 + + Update README for gitlab migration + + Signed-off-by: Alan Coopersmith + +commit e7654506717f7ff08eae7ab4c0db3fc1c2d5b7ed +Author: Raphaël Droz +Date: Sat Oct 27 22:17:31 2018 +0000 + + Update XIChangeHierarchy.txt + +commit 60ef7bab67aca3dd7c83e8726feb3c46869a74c2 +Author: Jeff Smith +Date: Thu Feb 1 01:59:56 2018 -0600 + + _XIPassiveGrabDevice needs to set time value + + When setting up a XIPassiveGrabDevice request, the time field is not + being set, leading to improper data being passed 'over the wire'. + + Accept a time value into _XIPassiveGrabDevice and use it to set the time + field in the request. Since the the functions calling + _XIPassiveGrabDevice are part of the API, and they do not accept time + values, they can just pass CurrentTime. + + Signed-off-by: Jeff Smith + Reviewed-by: Peter Hutterer + Signed-off-by: Peter Hutterer + +commit a1c639255b7a9270fea52de3f186eb2fca9de01a +Author: Peter Hutterer +Date: Wed Jun 14 11:15:01 2017 +1000 + + man: add a bunch of missing spaces + + Signed-off-by: Peter Hutterer + +commit 8ffaac5710a9a983227454d8473604daae3f172a +Author: Mihail Konev +Date: Thu Jan 26 13:52:49 2017 +1000 + + autogen: add default patch prefix + + Signed-off-by: Mihail Konev + +commit c6c386431e1fa6b45ff966191e68bee1150c5e87 +Author: Emil Velikov +Date: Mon Mar 9 12:00:52 2015 +0000 + + autogen.sh: use quoted string variables + + Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent + fall-outs, when they contain space. + + Signed-off-by: Emil Velikov + Reviewed-by: Peter Hutterer + Signed-off-by: Peter Hutterer + +commit c7584066d5b06cd2bb9d99df43b741cf565820ea +Author: Peter Hutterer +Date: Tue Jan 24 10:32:07 2017 +1000 + + autogen.sh: use exec instead of waiting for configure to finish + + Syncs the invocation of configure with the one from the server. + + Signed-off-by: Peter Hutterer + Reviewed-by: Emil Velikov + commit b87c312590877800b4e18a17a012b47839f5c06b Author: Peter Hutterer Date: Mon Jan 23 13:44:58 2017 +1000 diff --git a/lib/libXi/Makefile.am b/lib/libXi/Makefile.am index 825861eca..3ebb3a86f 100644 --- a/lib/libXi/Makefile.am +++ b/lib/libXi/Makefile.am @@ -14,3 +14,5 @@ ChangeLog: $(CHANGELOG_CMD) dist-hook: ChangeLog INSTALL + +EXTRA_DIST = README.md diff --git a/lib/libXi/Makefile.in b/lib/libXi/Makefile.in index 52561f874..ade5e6313 100644 --- a/lib/libXi/Makefile.in +++ b/lib/libXi/Makefile.in @@ -51,7 +51,7 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . -DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ +DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/xi.pc.in \ $(top_srcdir)/configure COPYING ChangeLog INSTALL compile \ config.guess config.sub depcomp install-sh ltmain.sh missing @@ -326,6 +326,7 @@ SUBDIRS = src man specs pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xi.pc MAINTAINERCLEANFILES = ChangeLog INSTALL +EXTRA_DIST = README.md all: all-recursive .SUFFIXES: diff --git a/lib/libXi/README b/lib/libXi/README deleted file mode 100644 index 44c705e5a..000000000 --- a/lib/libXi/README +++ /dev/null @@ -1,25 +0,0 @@ -libXi - library for the X Input Extension - -All questions regarding this software should be directed at the -Xorg mailing list: - - http://lists.freedesktop.org/mailman/listinfo/xorg - -Please submit bug reports to the Xorg bugzilla: - - https://bugs.freedesktop.org/enter_bug.cgi?product=xorg - -The master development code repository can be found at: - - git://anongit.freedesktop.org/git/xorg/lib/libXi - - http://cgit.freedesktop.org/xorg/lib/libXi - -For patch submission instructions, see: - - http://www.x.org/wiki/Development/Documentation/SubmittingPatches - -For more information on the git code manager, see: - - http://wiki.x.org/wiki/GitPage - diff --git a/lib/libXi/README.md b/lib/libXi/README.md new file mode 100644 index 000000000..13f3ecc82 --- /dev/null +++ b/lib/libXi/README.md @@ -0,0 +1,18 @@ +libXi - library for the X Input Extension +----------------------------------------- + +All questions regarding this software should be directed at the +Xorg mailing list: + + https://lists.x.org/mailman/listinfo/xorg + +The master development code repository can be found at: + + https://gitlab.freedesktop.org/xorg/lib/libXi + +Please submit bug reports and requests to merge patches there. + +For patch submission instructions, see: + + https://www.x.org/wiki/Development/Documentation/SubmittingPatches + diff --git a/lib/libXi/aclocal.m4 b/lib/libXi/aclocal.m4 index 275eb20ba..e7052124f 100644 --- a/lib/libXi/aclocal.m4 +++ b/lib/libXi/aclocal.m4 @@ -8606,32 +8606,63 @@ m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +dnl serial 11 (pkg-config-0.29.1) +dnl +dnl Copyright © 2004 Scott James Remnant . +dnl Copyright © 2012-2015 Dan Nicholson +dnl +dnl This program is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 2 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +dnl 02111-1307, USA. +dnl +dnl As a special exception to the GNU General Public License, if you +dnl distribute this file as part of a program that contains a +dnl configuration script generated by Autoconf, you may include it under +dnl the same distribution terms that you use for the rest of that +dnl program. -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- +dnl PKG_PREREQ(MIN-VERSION) +dnl ----------------------- +dnl Since: 0.29 +dnl +dnl Verify that the version of the pkg-config macros are at least +dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's +dnl installed version of pkg-config, this checks the developer's version +dnl of pkg.m4 when generating configure. +dnl +dnl To ensure that this macro is defined, also add: +dnl m4_ifndef([PKG_PREREQ], +dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) +dnl +dnl See the "Since" comment for each macro you use to see what version +dnl of the macros you require. +m4_defun([PKG_PREREQ], +[m4_define([PKG_MACROS_VERSION], [0.29.1]) +m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, + [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) +])dnl PKG_PREREQ + +dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) +dnl ---------------------------------- +dnl Since: 0.16 +dnl +dnl Search for the pkg-config tool and set the PKG_CONFIG variable to +dnl first found in the path. Checks that the version of pkg-config found +dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is +dnl used since that's the first version where most current features of +dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) @@ -8653,18 +8684,19 @@ if test -n "$PKG_CONFIG"; then PKG_CONFIG="" fi fi[]dnl -])# PKG_PROG_PKG_CONFIG +])dnl PKG_PROG_PKG_CONFIG -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- +dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------------------------------- +dnl Since: 0.18 +dnl +dnl Check to see whether a particular set of modules exists. Similar to +dnl PKG_CHECK_MODULES(), but does not set variables or print errors. +dnl +dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +dnl only at the first occurence in configure.ac, so if the first place +dnl it's called might be skipped (such as if it is within an "if", you +dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ @@ -8674,8 +8706,10 @@ m4_ifvaln([$3], [else $3])dnl fi]) -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- +dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +dnl --------------------------------------------- +dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting +dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" @@ -8687,10 +8721,11 @@ m4_define([_PKG_CONFIG], else pkg_failed=untried fi[]dnl -])# _PKG_CONFIG +])dnl _PKG_CONFIG -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- +dnl _PKG_SHORT_ERRORS_SUPPORTED +dnl --------------------------- +dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then @@ -8698,19 +8733,17 @@ if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then else _pkg_short_errors_supported=no fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED +])dnl _PKG_SHORT_ERRORS_SUPPORTED -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- +dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl -------------------------------------------------------------- +dnl Since: 0.4.0 +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES might not happen, you should be sure to include an +dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl @@ -8764,16 +8797,40 @@ else AC_MSG_RESULT([yes]) $3 fi[]dnl -])# PKG_CHECK_MODULES +])dnl PKG_CHECK_MODULES -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC + + +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -8784,16 +8841,18 @@ AC_ARG_WITH([pkgconfigdir], AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR +])dnl PKG_INSTALLDIR -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -8804,7 +8863,24 @@ AC_ARG_WITH([noarch-pkgconfigdir], AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR +])dnl PKG_NOARCH_INSTALLDIR + + +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. +AC_DEFUN([PKG_CHECK_VAR], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl + +_PKG_CONFIG([$1], [variable="][$3]["], [$2]) +AS_VAR_COPY([$1], [pkg_cv_][$1]) + +AS_VAR_IF([$1], [""], [$5], [$4])dnl +])dnl PKG_CHECK_VAR # Copyright (C) 2002-2012 Free Software Foundation, Inc. # @@ -9829,7 +9905,7 @@ AC_SUBST([am__untar]) dnl xorg-macros.m4. Generated from xorg-macros.m4.in xorgversion.m4 by configure. dnl -dnl Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. +dnl Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. dnl dnl Permission is hereby granted, free of charge, to any person obtaining a dnl copy of this software and associated documentation files (the "Software"), @@ -9866,7 +9942,7 @@ dnl DEALINGS IN THE SOFTWARE. # See the "minimum version" comment for each macro you use to see what # version you require. m4_defun([XORG_MACROS_VERSION],[ -m4_define([vers_have], [1.19.0]) +m4_define([vers_have], [1.19.2]) m4_define([maj_have], m4_substr(vers_have, 0, m4_index(vers_have, [.]))) m4_define([maj_needed], m4_substr([$1], 0, m4_index([$1], [.]))) m4_if(m4_cmp(maj_have, maj_needed), 0,, @@ -9944,6 +10020,17 @@ AC_DEFUN([XORG_MANPAGE_SECTIONS],[ AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_SED]) +case $host_os in + solaris*) + # Solaris 2.0 - 11.3 use SysV man page section numbers, so we + # check for a man page file found in later versions that use + # traditional section numbers instead + AC_CHECK_FILE([/usr/share/man/man7/attributes.7], + [SYSV_MAN_SECTIONS=false], [SYSV_MAN_SECTIONS=true]) + ;; + *) SYSV_MAN_SECTIONS=false ;; +esac + if test x$APP_MAN_SUFFIX = x ; then APP_MAN_SUFFIX=1 fi @@ -9959,9 +10046,9 @@ if test x$LIB_MAN_DIR = x ; then fi if test x$FILE_MAN_SUFFIX = x ; then - case $host_os in - solaris*) FILE_MAN_SUFFIX=4 ;; - *) FILE_MAN_SUFFIX=5 ;; + case $SYSV_MAN_SECTIONS in + true) FILE_MAN_SUFFIX=4 ;; + *) FILE_MAN_SUFFIX=5 ;; esac fi if test x$FILE_MAN_DIR = x ; then @@ -9969,9 +10056,9 @@ if test x$FILE_MAN_DIR = x ; then fi if test x$MISC_MAN_SUFFIX = x ; then - case $host_os in - solaris*) MISC_MAN_SUFFIX=5 ;; - *) MISC_MAN_SUFFIX=7 ;; + case $SYSV_MAN_SECTIONS in + true) MISC_MAN_SUFFIX=5 ;; + *) MISC_MAN_SUFFIX=7 ;; esac fi if test x$MISC_MAN_DIR = x ; then @@ -9979,9 +10066,9 @@ if test x$MISC_MAN_DIR = x ; then fi if test x$DRIVER_MAN_SUFFIX = x ; then - case $host_os in - solaris*) DRIVER_MAN_SUFFIX=7 ;; - *) DRIVER_MAN_SUFFIX=4 ;; + case $SYSV_MAN_SECTIONS in + true) DRIVER_MAN_SUFFIX=7 ;; + *) DRIVER_MAN_SUFFIX=4 ;; esac fi if test x$DRIVER_MAN_DIR = x ; then @@ -9989,9 +10076,9 @@ if test x$DRIVER_MAN_DIR = x ; then fi if test x$ADMIN_MAN_SUFFIX = x ; then - case $host_os in - solaris*) ADMIN_MAN_SUFFIX=1m ;; - *) ADMIN_MAN_SUFFIX=8 ;; + case $SYSV_MAN_SECTIONS in + true) ADMIN_MAN_SUFFIX=1m ;; + *) ADMIN_MAN_SUFFIX=8 ;; esac fi if test x$ADMIN_MAN_DIR = x ; then @@ -10252,13 +10339,24 @@ m4_ifval([$1], fi]) # Test for the ability of xmlto to generate a text target +# +# NOTE: xmlto 0.0.27 or higher return a non-zero return code in the +# following test for empty XML docbook files. +# For compatibility reasons use the following empty XML docbook file and if +# it fails try it again with a non-empty XML file. have_xmlto_text=no cat > conftest.xml << "EOF" EOF AS_IF([test "$have_xmlto" = yes], [AS_IF([$XMLTO --skip-validation txt conftest.xml >/dev/null 2>&1], [have_xmlto_text=yes], - [AC_MSG_WARN([xmlto cannot generate text format, this format skipped])])]) + [# Try it again with a non-empty XML file. + cat > conftest.xml << "EOF" + +EOF + AS_IF([$XMLTO --skip-validation txt conftest.xml >/dev/null 2>&1], + [have_xmlto_text=yes], + [AC_MSG_WARN([xmlto cannot generate text format, this format skipped])])])]) rm -f conftest.xml AM_CONDITIONAL([HAVE_XMLTO_TEXT], [test $have_xmlto_text = yes]) AM_CONDITIONAL([HAVE_XMLTO], [test "$have_xmlto" = yes]) @@ -11654,8 +11752,9 @@ AC_REQUIRE([PKG_PROG_PKG_CONFIG]) macros_datadir=`$PKG_CONFIG --print-errors --variable=pkgdatadir xorg-macros` INSTALL_CMD="(cp -f "$macros_datadir/INSTALL" \$(top_srcdir)/.INSTALL.tmp && \ mv \$(top_srcdir)/.INSTALL.tmp \$(top_srcdir)/INSTALL) \ -|| (rm -f \$(top_srcdir)/.INSTALL.tmp; touch \$(top_srcdir)/INSTALL; \ -echo 'util-macros \"pkgdatadir\" from xorg-macros.pc not found: installing possibly empty INSTALL.' >&2)" +|| (rm -f \$(top_srcdir)/.INSTALL.tmp; test -e \$(top_srcdir)/INSTALL || ( \ +touch \$(top_srcdir)/INSTALL; \ +echo 'failed to copy INSTALL from util-macros: installing empty INSTALL.' >&2))" AC_SUBST([INSTALL_CMD]) ]) # XORG_INSTALL dnl Copyright 2005 Red Hat, Inc @@ -11716,10 +11815,11 @@ AC_DEFUN([XORG_RELEASE_VERSION],[ # # AC_DEFUN([XORG_CHANGELOG], [ -CHANGELOG_CMD="(GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp && \ +CHANGELOG_CMD="((GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp) 2>/dev/null && \ mv \$(top_srcdir)/.changelog.tmp \$(top_srcdir)/ChangeLog) \ -|| (rm -f \$(top_srcdir)/.changelog.tmp; touch \$(top_srcdir)/ChangeLog; \ -echo 'git directory not found: installing possibly empty changelog.' >&2)" +|| (rm -f \$(top_srcdir)/.changelog.tmp; test -e \$(top_srcdir)/ChangeLog || ( \ +touch \$(top_srcdir)/ChangeLog; \ +echo 'git failed to create ChangeLog: installing empty ChangeLog.' >&2))" AC_SUBST([CHANGELOG_CMD]) ]) # XORG_CHANGELOG diff --git a/lib/libXi/compile b/lib/libXi/compile index a85b723c7..99e50524b 100644 --- a/lib/libXi/compile +++ b/lib/libXi/compile @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-10-14.11; # UTC +scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2014 Free Software Foundation, Inc. +# Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,7 +17,7 @@ scriptversion=2012-10-14.11; # UTC # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -255,7 +255,8 @@ EOF echo "compile $scriptversion" exit $? ;; - cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac @@ -339,9 +340,9 @@ exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-time-zone: "UTC" +# time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: diff --git a/lib/libXi/configure b/lib/libXi/configure index c66d94385..499ff5647 100644 --- a/lib/libXi/configure +++ b/lib/libXi/configure @@ -1,8 +1,8 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for libXi 1.7.9. +# Generated by GNU Autoconf 2.69 for libXi 1.7.10. # -# Report bugs to . +# Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -275,7 +275,7 @@ fi $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and -$0: https://bugs.freedesktop.org/enter_bug.cgi?product=xorg +$0: https://gitlab.freedesktop.org/xorg/lib/libXi/issues $0: about your system, including any error possibly output $0: before this message. Then install a modern shell, or $0: manually run the script under such a shell if you do @@ -651,9 +651,9 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='libXi' PACKAGE_TARNAME='libXi' -PACKAGE_VERSION='1.7.9' -PACKAGE_STRING='libXi 1.7.9' -PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' +PACKAGE_VERSION='1.7.10' +PACKAGE_STRING='libXi 1.7.10' +PACKAGE_BUGREPORT='https://gitlab.freedesktop.org/xorg/lib/libXi/issues' PACKAGE_URL='' ac_unique_file="Makefile.am" @@ -1451,7 +1451,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures libXi 1.7.9 to adapt to many kinds of systems. +\`configure' configures libXi 1.7.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1521,7 +1521,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libXi 1.7.9:";; + short | recursive ) echo "Configuration of libXi 1.7.10:";; esac cat <<\_ACEOF @@ -1597,7 +1597,7 @@ Some influential environment variables: Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. -Report bugs to . +Report bugs to . _ACEOF ac_status=$? fi @@ -1660,7 +1660,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libXi configure 1.7.9 +libXi configure 1.7.10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1984,7 +1984,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libXi $as_me 1.7.9, which was +It was created by libXi $as_me 1.7.10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2813,7 +2813,7 @@ fi # Define the identity of the package. PACKAGE='libXi' - VERSION='1.7.9' + VERSION='1.7.10' cat >>confdefs.h <<_ACEOF @@ -17499,10 +17499,11 @@ _ACEOF -CHANGELOG_CMD="(GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp && \ +CHANGELOG_CMD="((GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp) 2>/dev/null && \ mv \$(top_srcdir)/.changelog.tmp \$(top_srcdir)/ChangeLog) \ -|| (rm -f \$(top_srcdir)/.changelog.tmp; touch \$(top_srcdir)/ChangeLog; \ -echo 'git directory not found: installing possibly empty changelog.' >&2)" +|| (rm -f \$(top_srcdir)/.changelog.tmp; test -e \$(top_srcdir)/ChangeLog || ( \ +touch \$(top_srcdir)/ChangeLog; \ +echo 'git failed to create ChangeLog: installing empty ChangeLog.' >&2))" @@ -17510,14 +17511,45 @@ echo 'git directory not found: installing possibly empty changelog.' >&2)" macros_datadir=`$PKG_CONFIG --print-errors --variable=pkgdatadir xorg-macros` INSTALL_CMD="(cp -f "$macros_datadir/INSTALL" \$(top_srcdir)/.INSTALL.tmp && \ mv \$(top_srcdir)/.INSTALL.tmp \$(top_srcdir)/INSTALL) \ -|| (rm -f \$(top_srcdir)/.INSTALL.tmp; touch \$(top_srcdir)/INSTALL; \ -echo 'util-macros \"pkgdatadir\" from xorg-macros.pc not found: installing possibly empty INSTALL.' >&2)" +|| (rm -f \$(top_srcdir)/.INSTALL.tmp; test -e \$(top_srcdir)/INSTALL || ( \ +touch \$(top_srcdir)/INSTALL; \ +echo 'failed to copy INSTALL from util-macros: installing empty INSTALL.' >&2))" +case $host_os in + solaris*) + # Solaris 2.0 - 11.3 use SysV man page section numbers, so we + # check for a man page file found in later versions that use + # traditional section numbers instead + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for /usr/share/man/man7/attributes.7" >&5 +$as_echo_n "checking for /usr/share/man/man7/attributes.7... " >&6; } +if ${ac_cv_file__usr_share_man_man7_attributes_7+:} false; then : + $as_echo_n "(cached) " >&6 +else + test "$cross_compiling" = yes && + as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5 +if test -r "/usr/share/man/man7/attributes.7"; then + ac_cv_file__usr_share_man_man7_attributes_7=yes +else + ac_cv_file__usr_share_man_man7_attributes_7=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__usr_share_man_man7_attributes_7" >&5 +$as_echo "$ac_cv_file__usr_share_man_man7_attributes_7" >&6; } +if test "x$ac_cv_file__usr_share_man_man7_attributes_7" = xyes; then : + SYSV_MAN_SECTIONS=false +else + SYSV_MAN_SECTIONS=true +fi + + ;; + *) SYSV_MAN_SECTIONS=false ;; +esac + if test x$APP_MAN_SUFFIX = x ; then APP_MAN_SUFFIX=1 fi @@ -17533,9 +17565,9 @@ if test x$LIB_MAN_DIR = x ; then fi if test x$FILE_MAN_SUFFIX = x ; then - case $host_os in - solaris*) FILE_MAN_SUFFIX=4 ;; - *) FILE_MAN_SUFFIX=5 ;; + case $SYSV_MAN_SECTIONS in + true) FILE_MAN_SUFFIX=4 ;; + *) FILE_MAN_SUFFIX=5 ;; esac fi if test x$FILE_MAN_DIR = x ; then @@ -17543,9 +17575,9 @@ if test x$FILE_MAN_DIR = x ; then fi if test x$MISC_MAN_SUFFIX = x ; then - case $host_os in - solaris*) MISC_MAN_SUFFIX=5 ;; - *) MISC_MAN_SUFFIX=7 ;; + case $SYSV_MAN_SECTIONS in + true) MISC_MAN_SUFFIX=5 ;; + *) MISC_MAN_SUFFIX=7 ;; esac fi if test x$MISC_MAN_DIR = x ; then @@ -17553,9 +17585,9 @@ if test x$MISC_MAN_DIR = x ; then fi if test x$DRIVER_MAN_SUFFIX = x ; then - case $host_os in - solaris*) DRIVER_MAN_SUFFIX=7 ;; - *) DRIVER_MAN_SUFFIX=4 ;; + case $SYSV_MAN_SECTIONS in + true) DRIVER_MAN_SUFFIX=7 ;; + *) DRIVER_MAN_SUFFIX=4 ;; esac fi if test x$DRIVER_MAN_DIR = x ; then @@ -17563,9 +17595,9 @@ if test x$DRIVER_MAN_DIR = x ; then fi if test x$ADMIN_MAN_SUFFIX = x ; then - case $host_os in - solaris*) ADMIN_MAN_SUFFIX=1m ;; - *) ADMIN_MAN_SUFFIX=8 ;; + case $SYSV_MAN_SECTIONS in + true) ADMIN_MAN_SUFFIX=1m ;; + *) ADMIN_MAN_SUFFIX=8 ;; esac fi if test x$ADMIN_MAN_DIR = x ; then @@ -17836,17 +17868,30 @@ esac fi # Test for the ability of xmlto to generate a text target +# +# NOTE: xmlto 0.0.27 or higher return a non-zero return code in the +# following test for empty XML docbook files. +# For compatibility reasons use the following empty XML docbook file and if +# it fails try it again with a non-empty XML file. have_xmlto_text=no cat > conftest.xml << "EOF" EOF if test "$have_xmlto" = yes; then : if $XMLTO --skip-validation txt conftest.xml >/dev/null 2>&1; then : have_xmlto_text=yes +else + # Try it again with a non-empty XML file. + cat > conftest.xml << "EOF" + +EOF + if $XMLTO --skip-validation txt conftest.xml >/dev/null 2>&1; then : + have_xmlto_text=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: xmlto cannot generate text format, this format skipped" >&5 $as_echo "$as_me: WARNING: xmlto cannot generate text format, this format skipped" >&2;} fi fi +fi rm -f conftest.xml if test $have_xmlto_text = yes; then HAVE_XMLTO_TEXT_TRUE= @@ -19175,7 +19220,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by libXi $as_me 1.7.9, which was +This file was extended by libXi $as_me 1.7.10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19235,13 +19280,13 @@ $config_headers Configuration commands: $config_commands -Report bugs to ." +Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -libXi config.status 1.7.9 +libXi config.status 1.7.10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/lib/libXi/configure.ac b/lib/libXi/configure.ac index 69c9ef440..1edee43d4 100644 --- a/lib/libXi/configure.ac +++ b/lib/libXi/configure.ac @@ -1,8 +1,8 @@ # Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([libXi], [1.7.9], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXi]) +AC_INIT([libXi], [1.7.10], + [https://gitlab.freedesktop.org/xorg/lib/libXi/issues], [libXi]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([src/config.h]) diff --git a/lib/libXi/man/XAllowDeviceEvents.man b/lib/libXi/man/XAllowDeviceEvents.man index 1e0047e62..c9acbcd37 100644 --- a/lib/libXi/man/XAllowDeviceEvents.man +++ b/lib/libXi/man/XAllowDeviceEvents.man @@ -1,13 +1,13 @@ '\" t .\" Title: xallowdeviceevents .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XALLOWDEVICEEVENTS" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XALLOWDEVICEEVENTS" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -54,12 +54,12 @@ device event_mode Specifies the event mode\&.You can pass AsyncThisDevice, SyncThisDevice, ReplayThisDevice, AsyncOtherDevices, - SyncAll,or AsyncAll\&. + SyncAll, or AsyncAll\&. .fi .sp .nf time - Specifies the time\&.You can pass either a timestamp or + Specifies the time\&. You can pass either a timestamp or CurrentTime\&. .fi .SH "DESCRIPTION" @@ -76,7 +76,7 @@ The following describes the processing that occurs depending on what constant yo .sp -1 .IP \(bu 2.3 .\} -AsyncThisDevice \- If the specified device is frozen by the client, event processing for that device continues as usual\&. If the device is frozen multiple times by the client on behalf of multiple separate grabs, AsyncThisDevice thaws for all\&.AsyncThisDevice has no effect if the specified device is not frozen by the client, but the device need not be grabbed by the client\&. +AsyncThisDevice \- If the specified device is frozen by the client, event processing for that device continues as usual\&. If the device is frozen multiple times by the client on behalf of multiple separate grabs, AsyncThisDevice thaws for all\&. AsyncThisDevice has no effect if the specified device is not frozen by the client, but the device need not be grabbed by the client\&. .RE .sp .RS 4 @@ -134,7 +134,7 @@ SyncAll \- If all devices are frozen by the client, event processing (for all de AsyncAll \- If all devices are frozen by the client, event processing for all devices continues normally\&. If any device is frozen multiple times by the client on behalf of multiple separate grabs, AsyncAll thaws for all\&. AsyncAll has no effect unless all devices are frozen by the client\&. .RE .sp -AsyncThisDevice, SyncThisDevice, and ReplayThisDevice have no effect on the processing of events from the remaining devices\&.AsyncOtherDevices has no effect on the processing of events from the specified device\&. When the event_mode is SyncAll or AsyncAll, the device parameter is ignored\&. +AsyncThisDevice, SyncThisDevice, and ReplayThisDevice have no effect on the processing of events from the remaining devices\&. AsyncOtherDevices has no effect on the processing of events from the specified device\&. When the event_mode is SyncAll or AsyncAll, the device parameter is ignored\&. .sp It is possible for several grabs of different devices by the same or different clients to be active simultaneously\&. If a device is frozen on behalf of any grab, no event processing is performed for the device\&. It is possible for a single device to be frozen because of several grabs\&. In this case, the freeze must be released on behalf of each grab before events can again be processed\&. .sp diff --git a/lib/libXi/man/XAllowDeviceEvents.txt b/lib/libXi/man/XAllowDeviceEvents.txt index ba7fde39b..1120e3dde 100644 --- a/lib/libXi/man/XAllowDeviceEvents.txt +++ b/lib/libXi/man/XAllowDeviceEvents.txt @@ -25,10 +25,10 @@ SYNOPSIS event_mode Specifies the event mode.You can pass AsyncThisDevice, SyncThisDevice, ReplayThisDevice, AsyncOtherDevices, - SyncAll,or AsyncAll. + SyncAll, or AsyncAll. time - Specifies the time.You can pass either a timestamp or + Specifies the time. You can pass either a timestamp or CurrentTime. DESCRIPTION @@ -47,7 +47,7 @@ what constant you pass to the event_mode argument. client, event processing for that device continues as usual. If the device is frozen multiple times by the client on behalf of multiple separate grabs, AsyncThisDevice thaws for - all.AsyncThisDevice has no effect if the specified device is + all. AsyncThisDevice has no effect if the specified device is not frozen by the client, but the device need not be grabbed by the client. @@ -100,7 +100,7 @@ what constant you pass to the event_mode argument. AsyncThisDevice, SyncThisDevice, and ReplayThisDevice have no effect on the processing of events from the remaining -devices.AsyncOtherDevices has no effect on the processing of +devices. AsyncOtherDevices has no effect on the processing of events from the specified device. When the event_mode is SyncAll or AsyncAll, the device parameter is ignored. diff --git a/lib/libXi/man/XChangeDeviceControl.man b/lib/libXi/man/XChangeDeviceControl.man index 2c385bcec..948806386 100644 --- a/lib/libXi/man/XChangeDeviceControl.man +++ b/lib/libXi/man/XChangeDeviceControl.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceControl.libmansuffix +.so XGetDeviceControl.libmansuffix diff --git a/lib/libXi/man/XChangeDeviceDontPropagateList.man b/lib/libXi/man/XChangeDeviceDontPropagateList.man index 79074af14..2e7c201e3 100644 --- a/lib/libXi/man/XChangeDeviceDontPropagateList.man +++ b/lib/libXi/man/XChangeDeviceDontPropagateList.man @@ -1,13 +1,13 @@ '\" t .\" Title: xchangedevicedontpropagatelist .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XCHANGEDEVICEDONTPRO" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XCHANGEDEVICEDONTPRO" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -67,7 +67,7 @@ event_list .sp .nf mode - Specifies the mode\&.You can pass AddToList, or + Specifies the mode\&. You can pass AddToList, or DeleteFromList\&. .fi .sp diff --git a/lib/libXi/man/XChangeDeviceDontPropagateList.txt b/lib/libXi/man/XChangeDeviceDontPropagateList.txt index 398ded214..968142b88 100644 --- a/lib/libXi/man/XChangeDeviceDontPropagateList.txt +++ b/lib/libXi/man/XChangeDeviceDontPropagateList.txt @@ -33,7 +33,7 @@ SYNOPSIS Specifies a pointer to a list of event classes. mode - Specifies the mode.You can pass AddToList, or + Specifies the mode. You can pass AddToList, or DeleteFromList. count diff --git a/lib/libXi/man/XChangeDeviceKeyMapping.man b/lib/libXi/man/XChangeDeviceKeyMapping.man index 4ff457c64..d78687126 100644 --- a/lib/libXi/man/XChangeDeviceKeyMapping.man +++ b/lib/libXi/man/XChangeDeviceKeyMapping.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceKeyMapping.libmansuffix +.so XGetDeviceKeyMapping.libmansuffix diff --git a/lib/libXi/man/XChangeDeviceProperty.man b/lib/libXi/man/XChangeDeviceProperty.man index 20c3934e8..156dd2c9e 100644 --- a/lib/libXi/man/XChangeDeviceProperty.man +++ b/lib/libXi/man/XChangeDeviceProperty.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceProperty.libmansuffix +.so XGetDeviceProperty.libmansuffix diff --git a/lib/libXi/man/XChangeFeedbackControl.man b/lib/libXi/man/XChangeFeedbackControl.man index 1ea22c54e..dc41a6014 100644 --- a/lib/libXi/man/XChangeFeedbackControl.man +++ b/lib/libXi/man/XChangeFeedbackControl.man @@ -1 +1 @@ -.so manlibmansuffix/XGetFeedbackControl.libmansuffix +.so XGetFeedbackControl.libmansuffix diff --git a/lib/libXi/man/XChangeKeyboardDevice.man b/lib/libXi/man/XChangeKeyboardDevice.man index 04da9831e..8c538ffa5 100644 --- a/lib/libXi/man/XChangeKeyboardDevice.man +++ b/lib/libXi/man/XChangeKeyboardDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xchangekeyboarddevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XCHANGEKEYBOARDDEVIC" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XCHANGEKEYBOARDDEVIC" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XChangePointerDevice.man b/lib/libXi/man/XChangePointerDevice.man index 2a0e46d15..d0887592a 100644 --- a/lib/libXi/man/XChangePointerDevice.man +++ b/lib/libXi/man/XChangePointerDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xchangepointerdevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XCHANGEPOINTERDEVICE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XCHANGEPOINTERDEVICE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XCloseDevice.man b/lib/libXi/man/XCloseDevice.man index ff0ce17ed..79846cc6d 100644 --- a/lib/libXi/man/XCloseDevice.man +++ b/lib/libXi/man/XCloseDevice.man @@ -1 +1 @@ -.so manlibmansuffix/XOpenDevice.libmansuffix +.so XOpenDevice.libmansuffix diff --git a/lib/libXi/man/XDeleteDeviceProperty.man b/lib/libXi/man/XDeleteDeviceProperty.man index 20c3934e8..156dd2c9e 100644 --- a/lib/libXi/man/XDeleteDeviceProperty.man +++ b/lib/libXi/man/XDeleteDeviceProperty.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceProperty.libmansuffix +.so XGetDeviceProperty.libmansuffix diff --git a/lib/libXi/man/XDeviceBell.man b/lib/libXi/man/XDeviceBell.man index 64039ef37..1b1c9ef77 100644 --- a/lib/libXi/man/XDeviceBell.man +++ b/lib/libXi/man/XDeviceBell.man @@ -1,13 +1,13 @@ '\" t .\" Title: xdevicebell .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XDEVICEBELL" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XDEVICEBELL" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XDeviceTimeCoord.man b/lib/libXi/man/XDeviceTimeCoord.man index f9f3afd54..7d0b7dc6d 100644 --- a/lib/libXi/man/XDeviceTimeCoord.man +++ b/lib/libXi/man/XDeviceTimeCoord.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceMotionEvents.libmansuffix +.so XGetDeviceMotionEvents.libmansuffix diff --git a/lib/libXi/man/XFreeDeviceList.man b/lib/libXi/man/XFreeDeviceList.man index 9dd0be8ff..1a79ebf2d 100644 --- a/lib/libXi/man/XFreeDeviceList.man +++ b/lib/libXi/man/XFreeDeviceList.man @@ -1 +1 @@ -.so manlibmansuffix/XListInputDevices.libmansuffix +.so XListInputDevices.libmansuffix diff --git a/lib/libXi/man/XGetDeviceButtonMapping.man b/lib/libXi/man/XGetDeviceButtonMapping.man index 44b0ff9f1..01e08448a 100644 --- a/lib/libXi/man/XGetDeviceButtonMapping.man +++ b/lib/libXi/man/XGetDeviceButtonMapping.man @@ -1 +1 @@ -.so manlibmansuffix/XSetDeviceButtonMapping.libmansuffix +.so XSetDeviceButtonMapping.libmansuffix diff --git a/lib/libXi/man/XGetDeviceControl.man b/lib/libXi/man/XGetDeviceControl.man index 89c657029..8de91e41b 100644 --- a/lib/libXi/man/XGetDeviceControl.man +++ b/lib/libXi/man/XGetDeviceControl.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetdevicecontrol .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETDEVICECONTROL" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETDEVICECONTROL" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetDeviceDontPropagateList.man b/lib/libXi/man/XGetDeviceDontPropagateList.man index 65257dae4..a691a8b33 100644 --- a/lib/libXi/man/XGetDeviceDontPropagateList.man +++ b/lib/libXi/man/XGetDeviceDontPropagateList.man @@ -1 +1 @@ -.so manlibmansuffix/XChangeDeviceDontPropagateList.libmansuffix +.so XChangeDeviceDontPropagateList.libmansuffix diff --git a/lib/libXi/man/XGetDeviceFocus.man b/lib/libXi/man/XGetDeviceFocus.man index 9ce679e36..54b7e130a 100644 --- a/lib/libXi/man/XGetDeviceFocus.man +++ b/lib/libXi/man/XGetDeviceFocus.man @@ -1 +1 @@ -.so manlibmansuffix/XSetDeviceFocus.libmansuffix +.so XSetDeviceFocus.libmansuffix diff --git a/lib/libXi/man/XGetDeviceKeyMapping.man b/lib/libXi/man/XGetDeviceKeyMapping.man index 5029dc3e3..8df368aba 100644 --- a/lib/libXi/man/XGetDeviceKeyMapping.man +++ b/lib/libXi/man/XGetDeviceKeyMapping.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetdevicekeymapping .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETDEVICEKEYMAPPING" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETDEVICEKEYMAPPING" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetDeviceModifierMapping.man b/lib/libXi/man/XGetDeviceModifierMapping.man index 33f3b19e7..51bd2dac7 100644 --- a/lib/libXi/man/XGetDeviceModifierMapping.man +++ b/lib/libXi/man/XGetDeviceModifierMapping.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetdevicemodifiermapping .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETDEVICEMODIFIERMA" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETDEVICEMODIFIERMA" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetDeviceMotionEvents.man b/lib/libXi/man/XGetDeviceMotionEvents.man index 3aa0f2130..c845fc61b 100644 --- a/lib/libXi/man/XGetDeviceMotionEvents.man +++ b/lib/libXi/man/XGetDeviceMotionEvents.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetdevicemotionevents .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETDEVICEMOTIONEVEN" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETDEVICEMOTIONEVEN" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -59,7 +59,7 @@ device .nf start, stop Specify the time interval in which the events are - returned from the motionhistory buffer\&.You can pass a + returned from the motion history buffer\&. You can pass a timestamp or CurrentTime\&. .fi .sp diff --git a/lib/libXi/man/XGetDeviceMotionEvents.txt b/lib/libXi/man/XGetDeviceMotionEvents.txt index 9dfcfed5a..2104692f0 100644 --- a/lib/libXi/man/XGetDeviceMotionEvents.txt +++ b/lib/libXi/man/XGetDeviceMotionEvents.txt @@ -29,7 +29,7 @@ SYNOPSIS start, stop Specify the time interval in which the events are - returned from the motionhistory buffer.You can pass a + returned from the motion history buffer. You can pass a timestamp or CurrentTime. nevents_return diff --git a/lib/libXi/man/XGetDeviceProperty.man b/lib/libXi/man/XGetDeviceProperty.man index 12f846b81..f5bfebd1d 100644 --- a/lib/libXi/man/XGetDeviceProperty.man +++ b/lib/libXi/man/XGetDeviceProperty.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetdeviceproperty .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETDEVICEPROPERTY" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETDEVICEPROPERTY" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetExtensionVersion.man b/lib/libXi/man/XGetExtensionVersion.man index eedbf5ce3..4344a641f 100644 --- a/lib/libXi/man/XGetExtensionVersion.man +++ b/lib/libXi/man/XGetExtensionVersion.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetextensionversion .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETEXTENSIONVERSION" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETEXTENSIONVERSION" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetFeedbackControl.man b/lib/libXi/man/XGetFeedbackControl.man index 32c38baee..c968a12bb 100644 --- a/lib/libXi/man/XGetFeedbackControl.man +++ b/lib/libXi/man/XGetFeedbackControl.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgetfeedbackcontrol .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGETFEEDBACKCONTROL" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGETFEEDBACKCONTROL" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XGetSelectedExtensionEvents.man b/lib/libXi/man/XGetSelectedExtensionEvents.man index 4adbaa61e..ea49cf1af 100644 --- a/lib/libXi/man/XGetSelectedExtensionEvents.man +++ b/lib/libXi/man/XGetSelectedExtensionEvents.man @@ -1 +1 @@ -.so manlibmansuffix/XSelectExtensionEvent.libmansuffix +.so XSelectExtensionEvent.libmansuffix diff --git a/lib/libXi/man/XGrabDevice.man b/lib/libXi/man/XGrabDevice.man index 0c146446e..49703f1e8 100644 --- a/lib/libXi/man/XGrabDevice.man +++ b/lib/libXi/man/XGrabDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgrabdevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGRABDEVICE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGRABDEVICE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -72,8 +72,8 @@ grab_window .nf owner_events Specifies a Boolean value that indicates whether - theevents from the deviceare to be reported as usual or - reported with respect to the grab windowif selected by + the events from the device are to be reported as usual or + reported with respect to the grab window if selected by the event list\&. .fi .sp @@ -86,26 +86,26 @@ event_count .nf event_list Specifies a pointer to a list of event classes that - indicates which eventsthe client wishes to receive\&. - These event classes must have beenobtained specifying + indicates which events the client wishes to receive\&. + These event classes must have been obtained specifying the device being grabbed\&. .fi .sp .nf this_device_mode Specifies further processing of events from this - device\&.You can pass GrabModeSyncor GrabModeAsync\&. + device\&. You can pass GrabModeSync or GrabModeAsync\&. .fi .sp .nf other_devices_mode Specifies further processing of events from other - devices\&.You can pass GrabModeSyncor GrabModeAsync\&. + devices\&.You can pass GrabModeSync or GrabModeAsync\&. .fi .sp .nf time - Specifies the time\&.You can pass either a timestamp or + Specifies the time\&. You can pass either a timestamp or CurrentTime\&. .fi .SH "DESCRIPTION" @@ -180,8 +180,8 @@ device is frozen by an active grab of another client, it fails and returns GrabFrozen\&. If the specified time is earlier than the last\-device\-grab time or later than the current X server time, it fails and returns GrabInvalidTime\&. Otherwise, the -last\-device\-grab time is set to the specified time ( -CurrentTime is replaced by the current X server time)\&. +last\-device\-grab time is set to the specified time +(CurrentTime is replaced by the current X server time)\&. .fi .if n \{\ .RE diff --git a/lib/libXi/man/XGrabDevice.txt b/lib/libXi/man/XGrabDevice.txt index 443e6acbc..cfe215f2e 100644 --- a/lib/libXi/man/XGrabDevice.txt +++ b/lib/libXi/man/XGrabDevice.txt @@ -38,8 +38,8 @@ SYNOPSIS owner_events Specifies a Boolean value that indicates whether - theevents from the deviceare to be reported as usual or - reported with respect to the grab windowif selected by + the events from the device are to be reported as usual or + reported with respect to the grab window if selected by the event list. event_count @@ -48,20 +48,20 @@ SYNOPSIS event_list Specifies a pointer to a list of event classes that - indicates which eventsthe client wishes to receive. - These event classes must have beenobtained specifying + indicates which events the client wishes to receive. + These event classes must have been obtained specifying the device being grabbed. this_device_mode Specifies further processing of events from this - device.You can pass GrabModeSyncor GrabModeAsync. + device. You can pass GrabModeSync or GrabModeAsync. other_devices_mode Specifies further processing of events from other - devices.You can pass GrabModeSyncor GrabModeAsync. + devices.You can pass GrabModeSync or GrabModeAsync. time - Specifies the time.You can pass either a timestamp or + Specifies the time. You can pass either a timestamp or CurrentTime. DESCRIPTION @@ -109,8 +109,8 @@ DESCRIPTION and returns GrabFrozen. If the specified time is earlier than the last-device-grab time or later than the current X server time, it fails and returns GrabInvalidTime. Otherwise, the - last-device-grab time is set to the specified time ( - CurrentTime is replaced by the current X server time). + last-device-grab time is set to the specified time + (CurrentTime is replaced by the current X server time). If a grabbed device is closed by a client while an active grab by that client is in effect, the active grab is released. If diff --git a/lib/libXi/man/XGrabDeviceButton.man b/lib/libXi/man/XGrabDeviceButton.man index 8b36ed1c8..4ecdb0092 100644 --- a/lib/libXi/man/XGrabDeviceButton.man +++ b/lib/libXi/man/XGrabDeviceButton.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgrabdevicebutton .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGRABDEVICEBUTTON" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGRABDEVICEBUTTON" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -85,7 +85,7 @@ modifiers .nf modifier_device specifies the device whose modifiers are to be used\&. If - the modifier_devicespecified is NULL, the X keyboard + the modifier_device specified is NULL, the X keyboard will be used as the modifier_device\&. .fi .sp @@ -97,8 +97,8 @@ grab_window .nf owner_events Specifies a Boolean value that indicates whether the - deviceevents are to be reported as usual or reported - with respect to the grab windowif selected by the event + device events are to be reported as usual or reported + with respect to the grab window if selected by the event list\&. .fi .sp @@ -115,13 +115,13 @@ event_list .nf this_device_mode Specifies further processing of events from this - device\&.You can pass GrabModeSync or GrabModeAsync\&. + device\&. You can pass GrabModeSync or GrabModeAsync\&. .fi .sp .nf other_devices_mode Specifies further processing of events from all other - devices\&.You can pass GrabModeSync or GrabModeAsync\&. + devices\&. You can pass GrabModeSync or GrabModeAsync\&. .fi .SH "DESCRIPTION" .sp diff --git a/lib/libXi/man/XGrabDeviceButton.txt b/lib/libXi/man/XGrabDeviceButton.txt index aae0245d5..ab64782f3 100644 --- a/lib/libXi/man/XGrabDeviceButton.txt +++ b/lib/libXi/man/XGrabDeviceButton.txt @@ -49,7 +49,7 @@ SYNOPSIS modifier_device specifies the device whose modifiers are to be used. If - the modifier_devicespecified is NULL, the X keyboard + the modifier_device specified is NULL, the X keyboard will be used as the modifier_device. grab_window @@ -57,8 +57,8 @@ SYNOPSIS owner_events Specifies a Boolean value that indicates whether the - deviceevents are to be reported as usual or reported - with respect to the grab windowif selected by the event + device events are to be reported as usual or reported + with respect to the grab window if selected by the event list. event_count @@ -69,11 +69,11 @@ SYNOPSIS this_device_mode Specifies further processing of events from this - device.You can pass GrabModeSync or GrabModeAsync. + device. You can pass GrabModeSync or GrabModeAsync. other_devices_mode Specifies further processing of events from all other - devices.You can pass GrabModeSync or GrabModeAsync. + devices. You can pass GrabModeSync or GrabModeAsync. DESCRIPTION ----------- diff --git a/lib/libXi/man/XGrabDeviceKey.man b/lib/libXi/man/XGrabDeviceKey.man index 398c841cb..3bc7e357b 100644 --- a/lib/libXi/man/XGrabDeviceKey.man +++ b/lib/libXi/man/XGrabDeviceKey.man @@ -1,13 +1,13 @@ '\" t .\" Title: xgrabdevicekey .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XGRABDEVICEKEY" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XGRABDEVICEKEY" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -85,7 +85,7 @@ modifiers .nf modifier_device Specifies the device whose modifiers are to be used\&. If - a modifier_device ofNULL is specified, the X keyboard + a modifier_device of NULL is specified, the X keyboard will be used as the modifier_device\&. .fi .sp @@ -97,8 +97,8 @@ grab_window .nf owner_events Specifies a Boolean value that indicates whether the - deviceevents are to be reported as usual or reported - with respect to the grab windowif selected by the event + device events are to be reported as usual or reported + with respect to the grab window if selected by the event list\&. .fi .sp @@ -116,13 +116,13 @@ event_list .nf this_device_mode Specifies further processing of events from this - device\&.You can pass GrabModeSync or GrabModeAsync\&. + device\&. You can pass GrabModeSync or GrabModeAsync\&. .fi .sp .nf other_devices_mode Specifies further processing of events from other - devices\&.You can pass GrabModeSyncor GrabModeAsync\&. + devices\&. You can pass GrabModeSyncor GrabModeAsync\&. .fi .SH "DESCRIPTION" .sp diff --git a/lib/libXi/man/XGrabDeviceKey.txt b/lib/libXi/man/XGrabDeviceKey.txt index bee4c47da..ff86375b5 100644 --- a/lib/libXi/man/XGrabDeviceKey.txt +++ b/lib/libXi/man/XGrabDeviceKey.txt @@ -49,7 +49,7 @@ SYNOPSIS modifier_device Specifies the device whose modifiers are to be used. If - a modifier_device ofNULL is specified, the X keyboard + a modifier_device of NULL is specified, the X keyboard will be used as the modifier_device. grab_window @@ -57,8 +57,8 @@ SYNOPSIS owner_events Specifies a Boolean value that indicates whether the - deviceevents are to be reported as usual or reported - with respect to the grab windowif selected by the event + device events are to be reported as usual or reported + with respect to the grab window if selected by the event list. event_count @@ -70,11 +70,11 @@ SYNOPSIS this_device_mode Specifies further processing of events from this - device.You can pass GrabModeSync or GrabModeAsync. + device. You can pass GrabModeSync or GrabModeAsync. other_devices_mode Specifies further processing of events from other - devices.You can pass GrabModeSyncor GrabModeAsync. + devices. You can pass GrabModeSyncor GrabModeAsync. DESCRIPTION ----------- diff --git a/lib/libXi/man/XIBarrierReleasePointer.man b/lib/libXi/man/XIBarrierReleasePointer.man index 5d52c478f..cf971ff05 100644 --- a/lib/libXi/man/XIBarrierReleasePointer.man +++ b/lib/libXi/man/XIBarrierReleasePointer.man @@ -1,13 +1,13 @@ '\" t .\" Title: xibarrierreleasepointer .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 05/30/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIBARRIERRELEASEPOIN" "libmansuffix" "05/30/2013" "\ \&" "\ \&" +.TH "XIBARRIERRELEASEPOIN" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIBarrierReleasePointers.man b/lib/libXi/man/XIBarrierReleasePointers.man index 78bb999ed..d7c667242 100644 --- a/lib/libXi/man/XIBarrierReleasePointers.man +++ b/lib/libXi/man/XIBarrierReleasePointers.man @@ -1 +1 @@ -.so manlibmansuffix/XIBarrierReleasePointer.libmansuffix +.so XIBarrierReleasePointer.libmansuffix diff --git a/lib/libXi/man/XIChangeHierarchy.man b/lib/libXi/man/XIChangeHierarchy.man index 7b5422fe2..45716851e 100644 --- a/lib/libXi/man/XIChangeHierarchy.man +++ b/lib/libXi/man/XIChangeHierarchy.man @@ -1,13 +1,13 @@ '\" t .\" Title: xichangehierarchy .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XICHANGEHIERARCHY" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XICHANGEHIERARCHY" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -223,7 +223,7 @@ error\&. .RS 4 .\} .nf -XIAttachSlaveInfo attaches device to newMaster\&. If the device +XIAttachSlaveInfo attaches device to new_master\&. If the device is currently attached to a master device, it is detached from the master device and attached to the new master device\&. .fi diff --git a/lib/libXi/man/XIChangeHierarchy.txt b/lib/libXi/man/XIChangeHierarchy.txt index 205f40fe3..cef826f68 100644 --- a/lib/libXi/man/XIChangeHierarchy.txt +++ b/lib/libXi/man/XIChangeHierarchy.txt @@ -93,7 +93,7 @@ DESCRIPTION XIRemoveMasterInfo can generate a BadValue and a BadDevice error. - XIAttachSlaveInfo attaches device to newMaster. If the device + XIAttachSlaveInfo attaches device to new_master. If the device is currently attached to a master device, it is detached from the master device and attached to the new master device. diff --git a/lib/libXi/man/XIChangeProperty.man b/lib/libXi/man/XIChangeProperty.man index 103eb2261..f10b30f14 100644 --- a/lib/libXi/man/XIChangeProperty.man +++ b/lib/libXi/man/XIChangeProperty.man @@ -1,13 +1,13 @@ '\" t .\" Title: xichangeproperty .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XICHANGEPROPERTY" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XICHANGEPROPERTY" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIDefineCursor.man b/lib/libXi/man/XIDefineCursor.man index 113e5b4c0..33e83b821 100644 --- a/lib/libXi/man/XIDefineCursor.man +++ b/lib/libXi/man/XIDefineCursor.man @@ -1,13 +1,13 @@ '\" t .\" Title: xidefinecursor .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIDEFINECURSOR" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIDEFINECURSOR" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIDeleteProperty.man b/lib/libXi/man/XIDeleteProperty.man index 42e944184..849e4f611 100644 --- a/lib/libXi/man/XIDeleteProperty.man +++ b/lib/libXi/man/XIDeleteProperty.man @@ -1 +1 @@ -.so manlibmansuffix/XIChangeProperty.libmansuffix +.so XIChangeProperty.libmansuffix diff --git a/lib/libXi/man/XIFreeDeviceInfo.man b/lib/libXi/man/XIFreeDeviceInfo.man index 314c6de3d..5f4f9922e 100644 --- a/lib/libXi/man/XIFreeDeviceInfo.man +++ b/lib/libXi/man/XIFreeDeviceInfo.man @@ -1 +1 @@ -.so manlibmansuffix/XIQueryDevice.libmansuffix +.so XIQueryDevice.libmansuffix diff --git a/lib/libXi/man/XIGetClientPointer.man b/lib/libXi/man/XIGetClientPointer.man index 6cd9325a5..9230bef87 100644 --- a/lib/libXi/man/XIGetClientPointer.man +++ b/lib/libXi/man/XIGetClientPointer.man @@ -1 +1 @@ -.so manlibmansuffix/XISetClientPointer.libmansuffix +.so XISetClientPointer.libmansuffix diff --git a/lib/libXi/man/XIGetFocus.man b/lib/libXi/man/XIGetFocus.man index c119282d9..c5f54cac7 100644 --- a/lib/libXi/man/XIGetFocus.man +++ b/lib/libXi/man/XIGetFocus.man @@ -1 +1 @@ -.so manlibmansuffix/XISetFocus.libmansuffix +.so XISetFocus.libmansuffix diff --git a/lib/libXi/man/XIGetProperty.man b/lib/libXi/man/XIGetProperty.man index 42e944184..849e4f611 100644 --- a/lib/libXi/man/XIGetProperty.man +++ b/lib/libXi/man/XIGetProperty.man @@ -1 +1 @@ -.so manlibmansuffix/XIChangeProperty.libmansuffix +.so XIChangeProperty.libmansuffix diff --git a/lib/libXi/man/XIGetSelectedEvents.man b/lib/libXi/man/XIGetSelectedEvents.man index fbad756e2..60b61fd47 100644 --- a/lib/libXi/man/XIGetSelectedEvents.man +++ b/lib/libXi/man/XIGetSelectedEvents.man @@ -1 +1 @@ -.so manlibmansuffix/XISelectEvents.libmansuffix +.so XISelectEvents.libmansuffix diff --git a/lib/libXi/man/XIGrabButton.man b/lib/libXi/man/XIGrabButton.man index db70429f7..64d948deb 100644 --- a/lib/libXi/man/XIGrabButton.man +++ b/lib/libXi/man/XIGrabButton.man @@ -1,13 +1,13 @@ '\" t .\" Title: xigrabbutton .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIGRABBUTTON" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIGRABBUTTON" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIGrabDevice.man b/lib/libXi/man/XIGrabDevice.man index fda06b564..4c42a2270 100644 --- a/lib/libXi/man/XIGrabDevice.man +++ b/lib/libXi/man/XIGrabDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xigrabdevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIGRABDEVICE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIGRABDEVICE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIGrabEnter.man b/lib/libXi/man/XIGrabEnter.man index 6477da893..09ef66cad 100644 --- a/lib/libXi/man/XIGrabEnter.man +++ b/lib/libXi/man/XIGrabEnter.man @@ -1,13 +1,13 @@ '\" t .\" Title: xigrabenter .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIGRABENTER" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIGRABENTER" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIGrabFocusIn.man b/lib/libXi/man/XIGrabFocusIn.man index ebd8b17c2..0af569967 100644 --- a/lib/libXi/man/XIGrabFocusIn.man +++ b/lib/libXi/man/XIGrabFocusIn.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabEnter.libmansuffix +.so XIGrabEnter.libmansuffix diff --git a/lib/libXi/man/XIGrabKeycode.man b/lib/libXi/man/XIGrabKeycode.man index beed4f136..d6764b54a 100644 --- a/lib/libXi/man/XIGrabKeycode.man +++ b/lib/libXi/man/XIGrabKeycode.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabButton.libmansuffix +.so XIGrabButton.libmansuffix diff --git a/lib/libXi/man/XIGrabTouchBegin.man b/lib/libXi/man/XIGrabTouchBegin.man index beed4f136..d6764b54a 100644 --- a/lib/libXi/man/XIGrabTouchBegin.man +++ b/lib/libXi/man/XIGrabTouchBegin.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabButton.libmansuffix +.so XIGrabButton.libmansuffix diff --git a/lib/libXi/man/XIListProperties.man b/lib/libXi/man/XIListProperties.man index 695138d36..70970139d 100644 --- a/lib/libXi/man/XIListProperties.man +++ b/lib/libXi/man/XIListProperties.man @@ -1,13 +1,13 @@ '\" t .\" Title: xilistproperties .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XILISTPROPERTIES" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XILISTPROPERTIES" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIQueryDevice.man b/lib/libXi/man/XIQueryDevice.man index c504c6f73..87a14d9b5 100644 --- a/lib/libXi/man/XIQueryDevice.man +++ b/lib/libXi/man/XIQueryDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xiquerydevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIQUERYDEVICE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIQUERYDEVICE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIQueryPointer.man b/lib/libXi/man/XIQueryPointer.man index f34d04ca5..2c553c240 100644 --- a/lib/libXi/man/XIQueryPointer.man +++ b/lib/libXi/man/XIQueryPointer.man @@ -1,13 +1,13 @@ '\" t .\" Title: xiquerypointer .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIQUERYPOINTER" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIQUERYPOINTER" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIQueryVersion.man b/lib/libXi/man/XIQueryVersion.man index b949a5e5d..7291984ed 100644 --- a/lib/libXi/man/XIQueryVersion.man +++ b/lib/libXi/man/XIQueryVersion.man @@ -1,13 +1,13 @@ '\" t .\" Title: xiqueryversion .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 08/08/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIQUERYVERSION" "libmansuffix" "08/08/2013" "\ \&" "\ \&" +.TH "XIQUERYVERSION" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XISelectEvents.man b/lib/libXi/man/XISelectEvents.man index 49a78874f..d259428aa 100644 --- a/lib/libXi/man/XISelectEvents.man +++ b/lib/libXi/man/XISelectEvents.man @@ -1,13 +1,13 @@ '\" t .\" Title: xiselectevents .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XISELECTEVENTS" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XISELECTEVENTS" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XISetClientPointer.man b/lib/libXi/man/XISetClientPointer.man index ae872a9c8..740331689 100644 --- a/lib/libXi/man/XISetClientPointer.man +++ b/lib/libXi/man/XISetClientPointer.man @@ -1,13 +1,13 @@ '\" t .\" Title: xisetclientpointer .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XISETCLIENTPOINTER" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XISETCLIENTPOINTER" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XISetFocus.man b/lib/libXi/man/XISetFocus.man index 035881798..82a2871a1 100644 --- a/lib/libXi/man/XISetFocus.man +++ b/lib/libXi/man/XISetFocus.man @@ -1,13 +1,13 @@ '\" t .\" Title: xisetfocus .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XISETFOCUS" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XISETFOCUS" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XIUndefineCursor.man b/lib/libXi/man/XIUndefineCursor.man index fbbbdebf7..8afc645e2 100644 --- a/lib/libXi/man/XIUndefineCursor.man +++ b/lib/libXi/man/XIUndefineCursor.man @@ -1 +1 @@ -.so manlibmansuffix/XIDefineCursor.libmansuffix +.so XIDefineCursor.libmansuffix diff --git a/lib/libXi/man/XIUngrabButton.man b/lib/libXi/man/XIUngrabButton.man index beed4f136..d6764b54a 100644 --- a/lib/libXi/man/XIUngrabButton.man +++ b/lib/libXi/man/XIUngrabButton.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabButton.libmansuffix +.so XIGrabButton.libmansuffix diff --git a/lib/libXi/man/XIUngrabDevice.man b/lib/libXi/man/XIUngrabDevice.man index 784a862cb..8b96d09ba 100644 --- a/lib/libXi/man/XIUngrabDevice.man +++ b/lib/libXi/man/XIUngrabDevice.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabDevice.libmansuffix +.so XIGrabDevice.libmansuffix diff --git a/lib/libXi/man/XIUngrabEnter.man b/lib/libXi/man/XIUngrabEnter.man index ebd8b17c2..0af569967 100644 --- a/lib/libXi/man/XIUngrabEnter.man +++ b/lib/libXi/man/XIUngrabEnter.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabEnter.libmansuffix +.so XIGrabEnter.libmansuffix diff --git a/lib/libXi/man/XIUngrabFocusIn.man b/lib/libXi/man/XIUngrabFocusIn.man index ebd8b17c2..0af569967 100644 --- a/lib/libXi/man/XIUngrabFocusIn.man +++ b/lib/libXi/man/XIUngrabFocusIn.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabEnter.libmansuffix +.so XIGrabEnter.libmansuffix diff --git a/lib/libXi/man/XIUngrabKeycode.man b/lib/libXi/man/XIUngrabKeycode.man index beed4f136..d6764b54a 100644 --- a/lib/libXi/man/XIUngrabKeycode.man +++ b/lib/libXi/man/XIUngrabKeycode.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabButton.libmansuffix +.so XIGrabButton.libmansuffix diff --git a/lib/libXi/man/XIUngrabTouchBegin.man b/lib/libXi/man/XIUngrabTouchBegin.man index beed4f136..d6764b54a 100644 --- a/lib/libXi/man/XIUngrabTouchBegin.man +++ b/lib/libXi/man/XIUngrabTouchBegin.man @@ -1 +1 @@ -.so manlibmansuffix/XIGrabButton.libmansuffix +.so XIGrabButton.libmansuffix diff --git a/lib/libXi/man/XIWarpPointer.man b/lib/libXi/man/XIWarpPointer.man index 9a24f0964..ff6164522 100644 --- a/lib/libXi/man/XIWarpPointer.man +++ b/lib/libXi/man/XIWarpPointer.man @@ -1,13 +1,13 @@ '\" t .\" Title: xiwarppointer .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XIWARPPOINTER" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XIWARPPOINTER" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XListDeviceProperties.man b/lib/libXi/man/XListDeviceProperties.man index c459e442c..0b1951a5d 100644 --- a/lib/libXi/man/XListDeviceProperties.man +++ b/lib/libXi/man/XListDeviceProperties.man @@ -1,13 +1,13 @@ '\" t .\" Title: xlistdeviceproperties .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XLISTDEVICEPROPERTIE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XLISTDEVICEPROPERTIE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XListInputDevices.man b/lib/libXi/man/XListInputDevices.man index 997dc9b40..ebe6eef66 100644 --- a/lib/libXi/man/XListInputDevices.man +++ b/lib/libXi/man/XListInputDevices.man @@ -1,13 +1,13 @@ '\" t .\" Title: xlistinputdevices .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.78.1 -.\" Date: 10/13/2016 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XLISTINPUTDEVICES" "libmansuffix" "10/13/2016" "\ \&" "\ \&" +.TH "XLISTINPUTDEVICES" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -52,13 +52,13 @@ display .nf ndevices_return Specifies a pointer to a variable where the number of - available devices canbe returned\&. + available devices can be returned\&. .fi .sp .nf list Specifies the list of devices to free\&. The - XFreeDeviceList functionfrees the list of available + XFreeDeviceList function frees the list of available extension input devices\&. .fi .SH "DESCRIPTION" diff --git a/lib/libXi/man/XListInputDevices.txt b/lib/libXi/man/XListInputDevices.txt index 450f377d7..8b856f426 100644 --- a/lib/libXi/man/XListInputDevices.txt +++ b/lib/libXi/man/XListInputDevices.txt @@ -22,11 +22,11 @@ SYNOPSIS ndevices_return Specifies a pointer to a variable where the number of - available devices canbe returned. + available devices can be returned. list Specifies the list of devices to free. The - XFreeDeviceList functionfrees the list of available + XFreeDeviceList function frees the list of available extension input devices. DESCRIPTION diff --git a/lib/libXi/man/XOpenDevice.man b/lib/libXi/man/XOpenDevice.man index ae7752a70..545396234 100644 --- a/lib/libXi/man/XOpenDevice.man +++ b/lib/libXi/man/XOpenDevice.man @@ -1,13 +1,13 @@ '\" t .\" Title: xopendevice .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XOPENDEVICE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XOPENDEVICE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XQueryDeviceState.man b/lib/libXi/man/XQueryDeviceState.man index 4718b2963..b043b79cd 100644 --- a/lib/libXi/man/XQueryDeviceState.man +++ b/lib/libXi/man/XQueryDeviceState.man @@ -1,13 +1,13 @@ '\" t .\" Title: xquerydevicestate .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XQUERYDEVICESTATE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XQUERYDEVICESTATE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XSelectExtensionEvent.man b/lib/libXi/man/XSelectExtensionEvent.man index c36bc505a..f4314c109 100644 --- a/lib/libXi/man/XSelectExtensionEvent.man +++ b/lib/libXi/man/XSelectExtensionEvent.man @@ -1,13 +1,13 @@ '\" t .\" Title: xselectextensionevent .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSELECTEXTENSIONEVEN" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSELECTEXTENSIONEVEN" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XSendExtensionEvent.man b/lib/libXi/man/XSendExtensionEvent.man index 306fd22d7..b97d299fc 100644 --- a/lib/libXi/man/XSendExtensionEvent.man +++ b/lib/libXi/man/XSendExtensionEvent.man @@ -1,13 +1,13 @@ '\" t .\" Title: xsendextensionevent .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSENDEXTENSIONEVENT" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSENDEXTENSIONEVENT" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XSetDeviceButtonMapping.man b/lib/libXi/man/XSetDeviceButtonMapping.man index 74958f172..002787650 100644 --- a/lib/libXi/man/XSetDeviceButtonMapping.man +++ b/lib/libXi/man/XSetDeviceButtonMapping.man @@ -1,13 +1,13 @@ '\" t .\" Title: xsetdevicebuttonmapping .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSETDEVICEBUTTONMAPP" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSETDEVICEBUTTONMAPP" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff --git a/lib/libXi/man/XSetDeviceFocus.man b/lib/libXi/man/XSetDeviceFocus.man index 1d6d81d22..b885c61fc 100644 --- a/lib/libXi/man/XSetDeviceFocus.man +++ b/lib/libXi/man/XSetDeviceFocus.man @@ -1,13 +1,13 @@ '\" t .\" Title: xsetdevicefocus .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSETDEVICEFOCUS" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSETDEVICEFOCUS" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -66,28 +66,28 @@ device .sp .nf focus - Specifies the window, PointerRoot, FollowKeyboard,or + Specifies the window, PointerRoot, FollowKeyboard, or None\&. .fi .sp .nf focus_return - Returns the focus window, PointerRoot, FollowKeyboard,or + Returns the focus window, PointerRoot, FollowKeyboard, or None\&. .fi .sp .nf revert_to Specifies where the input focus reverts to if the window - becomes notviewable\&.You can pass RevertToParent, - RevertToPointerRoot, RevertToFollowKeyboard,or + becomes not viewable\&. You can pass RevertToParent, + RevertToPointerRoot, RevertToFollowKeyboard, or RevertToNone\&. .fi .sp .nf revert_to_return Returns the current focus state RevertToParent, - RevertToPointerRoot, RevertToFollowKeyboard,or + RevertToPointerRoot, RevertToFollowKeyboard, or RevertToNone\&. .fi .sp @@ -98,7 +98,7 @@ time_return .sp .nf time - Specifies the time\&.You can pass either a timestamp or + Specifies the time\&. You can pass either a timestamp or CurrentTime\&. .fi .SH "DESCRIPTION" diff --git a/lib/libXi/man/XSetDeviceFocus.txt b/lib/libXi/man/XSetDeviceFocus.txt index 2d92a9f05..94d638484 100644 --- a/lib/libXi/man/XSetDeviceFocus.txt +++ b/lib/libXi/man/XSetDeviceFocus.txt @@ -34,29 +34,29 @@ Arguments changed. focus - Specifies the window, PointerRoot, FollowKeyboard,or + Specifies the window, PointerRoot, FollowKeyboard, or None. focus_return - Returns the focus window, PointerRoot, FollowKeyboard,or + Returns the focus window, PointerRoot, FollowKeyboard, or None. revert_to Specifies where the input focus reverts to if the window - becomes notviewable.You can pass RevertToParent, - RevertToPointerRoot, RevertToFollowKeyboard,or + becomes not viewable. You can pass RevertToParent, + RevertToPointerRoot, RevertToFollowKeyboard, or RevertToNone. revert_to_return Returns the current focus state RevertToParent, - RevertToPointerRoot, RevertToFollowKeyboard,or + RevertToPointerRoot, RevertToFollowKeyboard, or RevertToNone. time_return Returns the last_focus_time for the device. time - Specifies the time.You can pass either a timestamp or + Specifies the time. You can pass either a timestamp or CurrentTime. DESCRIPTION diff --git a/lib/libXi/man/XSetDeviceMode.man b/lib/libXi/man/XSetDeviceMode.man index bd19885b3..544a1b3c7 100644 --- a/lib/libXi/man/XSetDeviceMode.man +++ b/lib/libXi/man/XSetDeviceMode.man @@ -1,13 +1,13 @@ '\" t .\" Title: xsetdevicemode .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSETDEVICEMODE" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSETDEVICEMODE" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -53,7 +53,7 @@ device .sp .nf mode - Specifies the mode\&.You can pass Absolute,or Relative\&. + Specifies the mode\&. You can pass Absolute, or Relative\&. .fi .SH "DESCRIPTION" .sp diff --git a/lib/libXi/man/XSetDeviceMode.txt b/lib/libXi/man/XSetDeviceMode.txt index 947ccfc47..1f7b37709 100644 --- a/lib/libXi/man/XSetDeviceMode.txt +++ b/lib/libXi/man/XSetDeviceMode.txt @@ -22,7 +22,7 @@ SYNOPSIS Specifies the device whose mode is to be changed. mode - Specifies the mode.You can pass Absolute,or Relative. + Specifies the mode. You can pass Absolute, or Relative. DESCRIPTION ----------- diff --git a/lib/libXi/man/XSetDeviceModifierMapping.man b/lib/libXi/man/XSetDeviceModifierMapping.man index 1f3aa2d8f..3362ea9eb 100644 --- a/lib/libXi/man/XSetDeviceModifierMapping.man +++ b/lib/libXi/man/XSetDeviceModifierMapping.man @@ -1 +1 @@ -.so manlibmansuffix/XGetDeviceModifierMapping.libmansuffix +.so XGetDeviceModifierMapping.libmansuffix diff --git a/lib/libXi/man/XSetDeviceValuators.man b/lib/libXi/man/XSetDeviceValuators.man index d15f02bc5..408a92277 100644 --- a/lib/libXi/man/XSetDeviceValuators.man +++ b/lib/libXi/man/XSetDeviceValuators.man @@ -1,13 +1,13 @@ '\" t .\" Title: xsetdevicevaluators .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] -.\" Generator: DocBook XSL Stylesheets v1.77.1 -.\" Date: 03/09/2013 +.\" Generator: DocBook XSL Stylesheets v1.79.1 +.\" Date: 06/19/2019 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "XSETDEVICEVALUATORS" "libmansuffix" "03/09/2013" "\ \&" "\ \&" +.TH "XSETDEVICEVALUATORS" "libmansuffix" "06/19/2019" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -57,13 +57,13 @@ device .nf valuators Specifies a pointer to an array of integer values to be - used to initialize thedevice valuators\&. + used to initialize the device valuators\&. .fi .sp .nf first_valuator Specifies the first valuator to be set\&. Valuators are - numbered beginning withzero\&. + numbered beginning with zero\&. .fi .sp .nf diff --git a/lib/libXi/man/XSetDeviceValuators.txt b/lib/libXi/man/XSetDeviceValuators.txt index 1116cea23..9fbd11def 100644 --- a/lib/libXi/man/XSetDeviceValuators.txt +++ b/lib/libXi/man/XSetDeviceValuators.txt @@ -26,11 +26,11 @@ SYNOPSIS valuators Specifies a pointer to an array of integer values to be - used to initialize thedevice valuators. + used to initialize the device valuators. first_valuator Specifies the first valuator to be set. Valuators are - numbered beginning withzero. + numbered beginning with zero. num_valuators Specifies the number of valuators to be set. diff --git a/lib/libXi/man/XUngrabDevice.man b/lib/libXi/man/XUngrabDevice.man index f7925d1a2..92a0ec776 100644 --- a/lib/libXi/man/XUngrabDevice.man +++ b/lib/libXi/man/XUngrabDevice.man @@ -1 +1 @@ -.so manlibmansuffix/XGrabDevice.libmansuffix +.so XGrabDevice.libmansuffix diff --git a/lib/libXi/man/XUngrabDeviceButton.man b/lib/libXi/man/XUngrabDeviceButton.man index aed816df3..1131aafe7 100644 --- a/lib/libXi/man/XUngrabDeviceButton.man +++ b/lib/libXi/man/XUngrabDeviceButton.man @@ -1 +1 @@ -.so manlibmansuffix/XGrabDeviceButton.libmansuffix +.so XGrabDeviceButton.libmansuffix diff --git a/lib/libXi/man/XUngrabDeviceKey.man b/lib/libXi/man/XUngrabDeviceKey.man index 19849bb04..e57f8ef99 100644 --- a/lib/libXi/man/XUngrabDeviceKey.man +++ b/lib/libXi/man/XUngrabDeviceKey.man @@ -1 +1 @@ -.so manlibmansuffix/XGrabDeviceKey.libmansuffix +.so XGrabDeviceKey.libmansuffix diff --git a/lib/libXi/src/XExtInt.c b/lib/libXi/src/XExtInt.c index a35fcc630..d3798761e 100644 --- a/lib/libXi/src/XExtInt.c +++ b/lib/libXi/src/XExtInt.c @@ -1616,6 +1616,8 @@ size_classes(xXIAnyInfo* from, int nclasses) return len; } +#define FP3232_TO_DOUBLE(x) ((double) (x).integral + (double) (x).frac / (1ULL << 32)) + /* Copy classes from any into to->classes and return the number of bytes * copied. Memory layout of to->classes is * [clsptr][clsptr][clsptr][classinfo][classinfo]... @@ -1724,10 +1726,9 @@ copy_classes(XIDeviceInfo* to, xXIAnyInfo* from, int *nclasses) cls_lib->number = cls_wire->number; cls_lib->label = cls_wire->label; cls_lib->resolution = cls_wire->resolution; - cls_lib->min = cls_wire->min.integral; - cls_lib->max = cls_wire->max.integral; - cls_lib->value = cls_wire->value.integral; - /* FIXME: fractional parts */ + cls_lib->min = FP3232_TO_DOUBLE(cls_wire->min); + cls_lib->max = FP3232_TO_DOUBLE(cls_wire->max); + cls_lib->value = FP3232_TO_DOUBLE(cls_wire->value); cls_lib->mode = cls_wire->mode; to->classes[cls_idx++] = any_lib; @@ -1748,8 +1749,7 @@ copy_classes(XIDeviceInfo* to, xXIAnyInfo* from, int *nclasses) cls_lib->number = cls_wire->number; cls_lib->scroll_type= cls_wire->scroll_type; cls_lib->flags = cls_wire->flags; - cls_lib->increment = cls_wire->increment.integral; - cls_lib->increment += (unsigned int)cls_wire->increment.frac/(double)(1ULL << 32); + cls_lib->increment = FP3232_TO_DOUBLE(cls_wire->increment); to->classes[cls_idx++] = any_lib; } @@ -2000,8 +2000,6 @@ wireToTouchOwnershipEvent(xXITouchOwnershipEvent *in, return 1; } -#define FP3232_TO_DOUBLE(x) ((double) (x).integral + (x).frac / (1ULL << 32)) - static int wireToBarrierEvent(xXIBarrierEvent *in, XGenericEventCookie *cookie) { diff --git a/lib/libXi/src/XIPassiveGrab.c b/lib/libXi/src/XIPassiveGrab.c index c74351685..32b0ab30a 100644 --- a/lib/libXi/src/XIPassiveGrab.c +++ b/lib/libXi/src/XIPassiveGrab.c @@ -38,7 +38,8 @@ _XIPassiveGrabDevice(Display* dpy, int deviceid, int grabtype, int detail, Window grab_window, Cursor cursor, int grab_mode, int paired_device_mode, Bool owner_events, XIEventMask *mask, - int num_modifiers, XIGrabModifiers *modifiers_inout) + int num_modifiers, XIGrabModifiers *modifiers_inout, + Time time) { xXIPassiveGrabDeviceReq *req; xXIPassiveGrabDeviceReply reply; @@ -74,6 +75,7 @@ _XIPassiveGrabDevice(Display* dpy, int deviceid, int grabtype, int detail, req->num_modifiers = num_modifiers; req->mask_len = (mask->mask_len + 3)/4; req->grab_type = grabtype; + req->time = time; len = req->mask_len + num_modifiers; SetReqLen(req, len, len); @@ -118,7 +120,7 @@ XIGrabButton(Display* dpy, int deviceid, int button, return _XIPassiveGrabDevice(dpy, deviceid, XIGrabtypeButton, button, grab_window, cursor, grab_mode, paired_device_mode, owner_events, mask, - num_modifiers, modifiers_inout); + num_modifiers, modifiers_inout, CurrentTime); } int @@ -130,7 +132,7 @@ XIGrabKeycode(Display* dpy, int deviceid, int keycode, return _XIPassiveGrabDevice(dpy, deviceid, XIGrabtypeKeycode, keycode, grab_window, None, grab_mode, paired_device_mode, owner_events, mask, num_modifiers, - modifiers_inout); + modifiers_inout, CurrentTime); } int @@ -142,7 +144,7 @@ XIGrabEnter(Display *dpy, int deviceid, Window grab_window, Cursor cursor, return _XIPassiveGrabDevice(dpy, deviceid, XIGrabtypeEnter, 0, grab_window, cursor, grab_mode, paired_device_mode, owner_events, mask, num_modifiers, - modifiers_inout); + modifiers_inout, CurrentTime); } int @@ -153,7 +155,7 @@ XIGrabFocusIn(Display *dpy, int deviceid, Window grab_window, int grab_mode, return _XIPassiveGrabDevice(dpy, deviceid, XIGrabtypeFocusIn, 0, grab_window, None, grab_mode, paired_device_mode, owner_events, mask, num_modifiers, - modifiers_inout); + modifiers_inout, CurrentTime); } int @@ -172,7 +174,7 @@ XIGrabTouchBegin(Display *dpy, int deviceid, Window grab_window, return _XIPassiveGrabDevice(dpy, deviceid, XIGrabtypeTouchBegin, 0, grab_window, None, XIGrabModeTouch, GrabModeAsync, owner_events, mask, - num_modifiers, modifiers_inout); + num_modifiers, modifiers_inout, CurrentTime); }