libXt-1.2.1/ 0000755 0001750 0001750 00000000000 14003304244 007570 5 0000000 0000000 libXt-1.2.1/test-driver 0000755 0001750 0001750 00000011042 14003304230 011677 0000000 0000000 #! /bin/sh
# test-driver - basic testsuite driver script.
scriptversion=2018-03-07.03; # UTC
# Copyright (C) 2011-2020 Free Software Foundation, Inc.
#
# 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, 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, see .
# 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.
# This file is maintained in Automake, please report
# bugs to or send patches to
# .
# Make unconditional expansion of undefined variables an error. This
# helps a lot in preventing typo-related bugs.
set -u
usage_error ()
{
echo "$0: $*" >&2
print_usage >&2
exit 2
}
print_usage ()
{
cat <$log_file 2>&1
estatus=$?
if test $enable_hard_errors = no && test $estatus -eq 99; then
tweaked_estatus=1
else
tweaked_estatus=$estatus
fi
case $tweaked_estatus:$expect_failure in
0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
0:*) col=$grn res=PASS recheck=no gcopy=no;;
77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
*:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
*:*) col=$red res=FAIL recheck=yes gcopy=yes;;
esac
# Report the test outcome and exit status in the logs, so that one can
# know whether the test passed or failed simply by looking at the '.log'
# file, without the need of also peaking into the corresponding '.trs'
# file (automake bug#11814).
echo "$res $test_name (exit status: $estatus)" >>$log_file
# Report outcome to console.
echo "${col}${res}${std}: $test_name"
# Register the test result, and other relevant metadata.
echo ":test-result: $res" > $trs_file
echo ":global-test-result: $res" >> $trs_file
echo ":recheck: $recheck" >> $trs_file
echo ":copy-in-global-log: $gcopy" >> $trs_file
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
libXt-1.2.1/compile 0000755 0001750 0001750 00000016350 14003304227 011074 0000000 0000000 #! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
scriptversion=2018-03-07.03; # UTC
# Copyright (C) 1999-2020 Free Software Foundation, Inc.
# Written by Tom Tromey .
#
# 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, 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, see .
# 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.
# This file is maintained in Automake, please report
# bugs to or send patches to
# .
nl='
'
# We need space, tab and new line, in precisely that order. Quoting is
# there to prevent tools from complaining about whitespace usage.
IFS=" "" $nl"
file_conv=
# func_file_conv build_file lazy
# Convert a $build file to $host form and store it in $file
# Currently only supports Windows hosts. If the determined conversion
# type is listed in (the comma separated) LAZY, no conversion will
# take place.
func_file_conv ()
{
file=$1
case $file in
/ | /[!/]*) # absolute file, and not a UNC file
if test -z "$file_conv"; then
# lazily determine how to convert abs files
case `uname -s` in
MINGW*)
file_conv=mingw
;;
CYGWIN* | MSYS*)
file_conv=cygwin
;;
*)
file_conv=wine
;;
esac
fi
case $file_conv/,$2, in
*,$file_conv,*)
;;
mingw/*)
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
;;
cygwin/* | msys/*)
file=`cygpath -m "$file" || echo "$file"`
;;
wine/*)
file=`winepath -w "$file" || echo "$file"`
;;
esac
;;
esac
}
# func_cl_dashL linkdir
# Make cl look for libraries in LINKDIR
func_cl_dashL ()
{
func_file_conv "$1"
if test -z "$lib_path"; then
lib_path=$file
else
lib_path="$lib_path;$file"
fi
linker_opts="$linker_opts -LIBPATH:$file"
}
# func_cl_dashl library
# Do a library search-path lookup for cl
func_cl_dashl ()
{
lib=$1
found=no
save_IFS=$IFS
IFS=';'
for dir in $lib_path $LIB
do
IFS=$save_IFS
if $shared && test -f "$dir/$lib.dll.lib"; then
found=yes
lib=$dir/$lib.dll.lib
break
fi
if test -f "$dir/$lib.lib"; then
found=yes
lib=$dir/$lib.lib
break
fi
if test -f "$dir/lib$lib.a"; then
found=yes
lib=$dir/lib$lib.a
break
fi
done
IFS=$save_IFS
if test "$found" != yes; then
lib=$lib.lib
fi
}
# func_cl_wrapper cl arg...
# Adjust compile command to suit cl
func_cl_wrapper ()
{
# Assume a capable shell
lib_path=
shared=:
linker_opts=
for arg
do
if test -n "$eat"; then
eat=
else
case $1 in
-o)
# configure might choose to run compile as 'compile cc -o foo foo.c'.
eat=1
case $2 in
*.o | *.[oO][bB][jJ])
func_file_conv "$2"
set x "$@" -Fo"$file"
shift
;;
*)
func_file_conv "$2"
set x "$@" -Fe"$file"
shift
;;
esac
;;
-I)
eat=1
func_file_conv "$2" mingw
set x "$@" -I"$file"
shift
;;
-I*)
func_file_conv "${1#-I}" mingw
set x "$@" -I"$file"
shift
;;
-l)
eat=1
func_cl_dashl "$2"
set x "$@" "$lib"
shift
;;
-l*)
func_cl_dashl "${1#-l}"
set x "$@" "$lib"
shift
;;
-L)
eat=1
func_cl_dashL "$2"
;;
-L*)
func_cl_dashL "${1#-L}"
;;
-static)
shared=false
;;
-Wl,*)
arg=${1#-Wl,}
save_ifs="$IFS"; IFS=','
for flag in $arg; do
IFS="$save_ifs"
linker_opts="$linker_opts $flag"
done
IFS="$save_ifs"
;;
-Xlinker)
eat=1
linker_opts="$linker_opts $2"
;;
-*)
set x "$@" "$1"
shift
;;
*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
func_file_conv "$1"
set x "$@" -Tp"$file"
shift
;;
*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
func_file_conv "$1" mingw
set x "$@" "$file"
shift
;;
*)
set x "$@" "$1"
shift
;;
esac
fi
shift
done
if test -n "$linker_opts"; then
linker_opts="-link$linker_opts"
fi
exec "$@" $linker_opts
exit 1
}
eat=
case $1 in
'')
echo "$0: No command. Try '$0 --help' for more information." 1>&2
exit 1;
;;
-h | --h*)
cat <<\EOF
Usage: compile [--help] [--version] PROGRAM [ARGS]
Wrapper for compilers which do not understand '-c -o'.
Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
arguments, and rename the output as expected.
If you are trying to build a whole package this is not the
right script to run: please start by reading the file 'INSTALL'.
Report bugs to .
EOF
exit $?
;;
-v | --v*)
echo "compile $scriptversion"
exit $?
;;
cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
func_cl_wrapper "$@" # Doesn't return...
;;
esac
ofile=
cfile=
for arg
do
if test -n "$eat"; then
eat=
else
case $1 in
-o)
# configure might choose to run compile as 'compile cc -o foo foo.c'.
# So we strip '-o arg' only if arg is an object.
eat=1
case $2 in
*.o | *.obj)
ofile=$2
;;
*)
set x "$@" -o "$2"
shift
;;
esac
;;
*.c)
cfile=$1
set x "$@" "$1"
shift
;;
*)
set x "$@" "$1"
shift
;;
esac
fi
shift
done
if test -z "$ofile" || test -z "$cfile"; then
# If no '-o' option was seen then we might have been invoked from a
# pattern rule where we don't need one. That is ok -- this is a
# normal compilation that the losing compiler can handle. If no
# '.c' file was seen then we are probably linking. That is also
# ok.
exec "$@"
fi
# Name of file we expect compiler to create.
cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
# Create the lock directory.
# Note: use '[/\\:.-]' here to ensure that we don't use the same name
# that we are using for the .o file. Also, base the name on the expected
# object file name, since that is what matters with a parallel build.
lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
while true; do
if mkdir "$lockdir" >/dev/null 2>&1; then
break
fi
sleep 1
done
# FIXME: race condition here if user kills between mkdir and trap.
trap "rmdir '$lockdir'; exit 1" 1 2 15
# Run the compile.
"$@"
ret=$?
if test -f "$cofile"; then
test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
elif test -f "${cofile}bj"; then
test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
fi
rmdir "$lockdir"
exit $ret
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
libXt-1.2.1/ChangeLog 0000644 0001750 0001750 00000473401 14003304243 011272 0000000 0000000 commit edd70bdfbbd16247e3d9564ca51d864f82626eb7
Author: Matt Turner
Date: Sun Jan 24 09:45:53 2021 -0500
libXt 1.2.1
Signed-off-by: Matt Turner
commit 32fb9ec3b60d0262d65829ad0fc1463464648c4b
Author: Thomas E. Dickey
Date: Wed Feb 5 04:37:37 2020 -0500
_XtCalloc actually uses a Cardinal, not size_t
commit 15a6234f9bee37d3c25bb21ce66db5846e082563
Author: Walter Harms
Date: Sun Dec 22 18:48:02 2019 +0100
add errorhandling to _XtVaToTypedArgList()
to make it behave like _XtVaToTypedArgList() add some checks
and make sure that all args are propper initialized. also
replace Malloc with Calloc and get arg check for free
Signed-off-by: Walter Harms
commit 6cc7763e4bb7298a6c81f81015d6e750d6b4ea5c
Merge: b2c33d4 51cbf52
Author: Walter Harms
Date: Sun Dec 22 18:29:38 2019 +0100
Merge branch 'master' of ssh://gitlab.freedesktop.org/xorg/lib/libxt
commit b2c33d42605147831c48a8946e90f356340e709e
Author: Walter Harms
Date: Sun Dec 22 17:51:53 2019 +0100
refactoring, reduce indent level
Signed-off-by: Walter Harms
commit 51cbf52b7668ad46a428dabe8e79e6819e825b20
Author: Thomas E. Dickey
Date: Fri Nov 15 21:00:44 2019 -0500
add a null-pointer check, overlooked in fix for issue #12.
Signed-off-by: Thomas E. Dickey
commit 1bf4dfce4431b016a2970e195ea55188288264f6
Author: Thomas E. Dickey
Date: Sat Nov 9 21:01:29 2019 -0500
issue #12: work within existing interface which attempts to obtain the
display-pointer from the screen-pointer but fails when the screen-pointer
itself is invalid. Ensure that the screen-pointer is valid by checking
the default_screen value against the valid range, and forcing it to zero
if it is out of bounds.
Signed-off-by: Thomas E. Dickey
commit 8fe25ef4a99c38abe31113d5cfa0b85c7cd5c2de
Author: Walter Harms
Date: Sat Nov 9 22:14:36 2019 +0100
no need to check arguments for XtFree()
Signed-off-by: Walter Harms
commit c7bdc7c0b75b6ec4df0bc180a20cf55ed0f43281
Author: Thomas E. Dickey
Date: Sat Nov 9 06:19:14 2019 -0500
new build
Signed-off-by: Thomas E. Dickey
commit ffc91271de153053c5c070fb11b4c701339ea06d
Author: Thomas E. Dickey
Date: Sat Nov 9 06:02:09 2019 -0500
issue 12 - DISPLAY=:0.-1 XtScreenDatabase segfault
Add a null-pointer check XtScreenDatabase(), exit if no display was opened.
Signed-off-by: Thomas E. Dickey
commit 5964fb7e3a3c43db34e8a85df3332da0117e3336
Author: Thomas E. Dickey
Date: Thu Aug 1 19:22:27 2019 -0400
improved the script used for typedef-options with indent, updated indentation
Signed-off-by: Thomas E. Dickey
commit 727195e741cb4de851870efc92232d66dcd5a8f0
Author: Thomas E. Dickey
Date: Sun Jul 14 17:42:46 2019 -0400
bump minor version to reflect code-cleanup
Signed-off-by: Thomas E. Dickey
commit d9ff063428adeb7139ee2eb1a96c8fb6263bac12
Author: Thomas E. Dickey
Date: Sun Jul 14 16:33:16 2019 -0400
remove the ARGUSED lines, which confuse GNU indent, ditto for LINTLIBRARY
Signed-off-by: Thomas E. Dickey
commit 04bb8d633f922e12f76b17de5b876320b0fe3b69
Author: Thomas E. Dickey
Date: Sun Jul 14 16:30:05 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 2ff3f1fa183be97e66afb863cb9fec391ee3cd5c
Author: Thomas E. Dickey
Date: Sun Jul 14 16:23:33 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit ceeffbae4c9a19fe304ae13c66bbfa2160a0c4c9
Author: Thomas E. Dickey
Date: Sun Jul 14 16:22:42 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit f9bcb0beff28a12ef66a5555889070c211b6724e
Author: Thomas E. Dickey
Date: Sun Jul 14 16:21:13 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit c32e6431de07c2c6314b710c0a9e446b7a62f831
Author: Thomas E. Dickey
Date: Sun Jul 14 16:19:32 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 91e5f17c9c7251a001d98613d8399045e6f47377
Author: Thomas E. Dickey
Date: Sun Jul 14 16:18:37 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 4f41be501408c1f37215665da7049dd363755f7b
Author: Thomas E. Dickey
Date: Sun Jul 14 16:17:53 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 4d16315364a0d1fd80a5e71f1dc885fe6674072b
Author: Thomas E. Dickey
Date: Sun Jul 14 16:15:26 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 6972afd215dc195e3213864d9b725a48bf766b6d
Author: Thomas E. Dickey
Date: Sun Jul 14 16:12:44 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 0aaf4560b718e9c9e5843b610974626b68688a93
Author: Thomas E. Dickey
Date: Sun Jul 14 16:11:22 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 204b9be31b67cc224bdfb47da3aacec1ceae6cad
Author: Thomas E. Dickey
Date: Sun Jul 14 16:06:24 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 5e633abc04b0b02be5bba8ffc3d7c4950f12cda0
Author: Thomas E. Dickey
Date: Sun Jul 14 16:03:06 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 79208cbc8e352bb9e4d7f3392a373f8bb67d21f4
Author: Thomas E. Dickey
Date: Sun Jul 14 16:00:54 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 832c4eb0ba6cf18ed0dbec2d542b65f10ac549df
Author: Thomas E. Dickey
Date: Sun Jul 14 15:58:21 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 03b78385ae3628e0e0e66efb6c8f13d277a8da7d
Author: Thomas E. Dickey
Date: Sun Jul 14 15:55:55 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 7a37a8ddb5b5a208d718244f751fad6678a7bf8b
Author: Thomas E. Dickey
Date: Sun Jul 14 15:53:11 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 019cfe87355df593355a37f53e768d8ccdf06eb0
Author: Thomas E. Dickey
Date: Sun Jul 14 15:50:13 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 43f01d164ecdc5d5efe62a5fb82a4d22aa62b0e0
Author: Thomas E. Dickey
Date: Sun Jul 14 15:48:32 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit b7d917281a2bdd51c8816aa89fc76de47d663526
Author: Thomas E. Dickey
Date: Sun Jul 14 15:47:30 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 710d25ec2432b170c508d08abfe3e2944078590b
Author: Thomas E. Dickey
Date: Sun Jul 14 15:44:40 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit c37ea7484dcf7aad160d536a1212924483947490
Author: Thomas E. Dickey
Date: Sun Jul 14 15:42:47 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit d2ee89ce4d9e94b3319c72046853afda5ad3d3ed
Author: Thomas E. Dickey
Date: Sun Jul 14 15:38:30 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit ca56f7951a76d3b695ad96aa1fde8bf8120f2bc1
Author: Thomas E. Dickey
Date: Sun Jul 14 15:30:12 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 10c7594030e6be7c731c44b17102b33bef91b12b
Author: Thomas E. Dickey
Date: Sun Jul 14 15:24:30 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 02b712159a2e7152669fd6d2a315e6f7690bb2d7
Author: Thomas E. Dickey
Date: Sun Jul 14 15:23:19 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 348a30bb5a850a626733a4d255d7ab633d22ebd4
Author: Thomas E. Dickey
Date: Sun Jul 14 15:20:42 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 99343f5a4660e121911dc907c2858c7a1ef1dd0c
Author: Thomas E. Dickey
Date: Sun Jul 14 15:19:16 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit c37faef75de9b4de70e6394e814c7c50b4fca6d9
Author: Thomas E. Dickey
Date: Sun Jul 14 14:51:39 2019 -0400
turn off indent in generated files
Signed-off-by: Thomas E. Dickey
commit 3af1ae2a76b789f89793d64b8d6eff7f9c24ca75
Author: Thomas E. Dickey
Date: Sun Jul 14 14:45:28 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 891419c3bcfc7d07f195957d1d74a03846b72eca
Author: Thomas E. Dickey
Date: Sun Jul 14 14:40:41 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit a5f21f4e0cf482077d213153efc5d041d15132cb
Author: Thomas E. Dickey
Date: Sun Jul 14 14:35:02 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 26444bb3a221263b367f1559948069fb807458f9
Author: Thomas E. Dickey
Date: Sun Jul 14 14:28:59 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 58fc6aefc494580991347b1f1c24cd21fe77fba0
Author: Thomas E. Dickey
Date: Sun Jul 14 14:12:21 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 3a5b9155c5a7ecd6b81a9243197f89d5f11865dd
Author: Thomas E. Dickey
Date: Sun Jul 14 14:03:33 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit c63b90edf271bcdc71dea5f30588c47acf278c0f
Author: Thomas E. Dickey
Date: Sun Jul 14 13:54:21 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit f27bb4149d954dcd019ebed805aa526f0fff54a3
Author: Thomas E. Dickey
Date: Sun Jul 14 13:50:56 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 0a13b48b89b4e52739e89a7f3631d2b5a68e898b
Author: Thomas E. Dickey
Date: Sun Jul 14 13:44:53 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 54c4eed190cc5a9a759c37f1d9002a7067d12ab5
Author: Thomas E. Dickey
Date: Sun Jul 14 13:42:30 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 8cd7b381725916ff1e9ca9d5f81b26fc790bbf2c
Author: Thomas E. Dickey
Date: Sun Jul 14 13:38:34 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit f291d614f9c892d3f6dace9a9fd176780b135358
Author: Thomas E. Dickey
Date: Sun Jul 7 20:44:48 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 426ebffd0294172409c3422439fbaacda3463c08
Author: Thomas E. Dickey
Date: Sun Jul 7 20:43:34 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 40d64a0d706bf41c070b3027c153ecb8229368bd
Author: Thomas E. Dickey
Date: Sun Jul 7 20:26:34 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 9876c91af02a8c442c43f8cfec1101549b0e9738
Author: Thomas E. Dickey
Date: Sun Jul 7 20:24:20 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 9f3baddea068e9c615595afaca13b1e7abb1f524
Author: Thomas E. Dickey
Date: Sun Jul 7 20:21:47 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 59499201effb2f07969c7940637016cb7d854967
Author: Thomas E. Dickey
Date: Sun Jul 7 20:09:45 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 8adff9851b1809f38110c31bcb35d6faf45c6fda
Author: Thomas E. Dickey
Date: Sun Jul 7 20:06:05 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 3da5c20b3c61f4a952f858455aa049fb201a476e
Author: Thomas E. Dickey
Date: Sun Jul 7 20:03:18 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 24816189ce8f21b77ede96bc1f83f41cf2ffa7fe
Author: Thomas E. Dickey
Date: Sun Jul 7 19:59:07 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 2b4b0b5104b9f39769f8cd500c57c0bf17994825
Author: Thomas E. Dickey
Date: Sun Jul 7 19:58:04 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 818711dd5ac1add5a67064cb6b0683c19055961e
Author: Thomas E. Dickey
Date: Sun Jul 7 19:56:05 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 650398b40bf500698cfe1f040df9e9d217e9c807
Author: Thomas E. Dickey
Date: Sun Jul 7 19:55:21 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 1737661309d55aa33e668142cf3301a8e94ff44d
Author: Thomas E. Dickey
Date: Sun Jul 7 19:47:08 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 9f81c761344b764b7f9950b7f7a2f57fb8465c12
Author: Thomas E. Dickey
Date: Sun Jul 7 19:46:02 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit f962bf49b6607db00443a93001c227e1a4d18275
Author: Thomas E. Dickey
Date: Sun Jul 7 19:44:32 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 6370bd1f33c7d8219176a0a59e7937cbd06b6794
Author: Thomas E. Dickey
Date: Sun Jul 7 19:42:07 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 5d616cb0f2e01ddc7705ffac79183537ba17a9c6
Author: Thomas E. Dickey
Date: Sun Jul 7 19:34:22 2019 -0400
indent'd like "x-indent.sh", but with a more complete set of typedefs - see
https://github.com/ThomasDickey/cindent-snapshots/blob/master/scripts/xxx-profile
Signed-off-by: Thomas E. Dickey
commit 8097b3fb5a7aa677eedeb58a125fc3569ea6fc48
Author: Thomas E. Dickey
Date: Sun Jul 7 16:05:12 2019 -0400
add curly-braces in a couple of places to allow running "indent"
Signed-off-by: Thomas E. Dickey
commit 8db6d1db575607767993ffb244f63d3ad5a5ac9f
Author: Thomas E. Dickey
Date: Sun Jul 7 13:46:57 2019 -0400
fix a couple of strict warnings by refactoring macros
Signed-off-by: Thomas E. Dickey
commit 0b08f9c45edf8b708b096b89c614094a92a6b7a6
Author: Thomas E. Dickey
Date: Sun Jul 7 13:26:07 2019 -0400
remove/amend a few casts which produced warnings
Signed-off-by: Thomas E. Dickey
commit e4dfb3e179e54177244ab668d6d84486fbd26944
Author: Thomas E. Dickey
Date: Sun Jul 7 13:07:04 2019 -0400
fix a possibly-uninitialized quark, and remove unnecessary casts which produced warnings
Signed-off-by: Thomas E. Dickey
commit 6038bd4fd95050f77c18c7cbf9ec2ca9152590af
Author: Thomas E. Dickey
Date: Sun Jul 7 13:00:34 2019 -0400
constify table passed to _XtTableAddConverter to reduce strict compiler warnings
Signed-off-by: Thomas E. Dickey
commit 61df064c511bb93b49a67a2d2b3c4886d650eeda
Author: Thomas E. Dickey
Date: Sun Jul 7 12:13:17 2019 -0400
use _X_UNUSED to quiet compiler warnings
Signed-off-by: Thomas E. Dickey
commit 1229be61dabfcbba555ec34fd43da21e94ed7f06
Merge: 0a19e0f 93ffd50
Author: Thomas E. Dickey
Date: Tue Jun 18 20:03:33 2019 -0400
Merge remote-tracking branch 'upstream/master'
commit 93ffd50ccf04d02fc94565d8ee831c7b63d6d71a
Author: Thomas E. Dickey
Date: Tue Jun 18 19:23:24 2019 -0400
add a dependency on makestrs to help with parallel builds
Signed-off-by: Thomas E. Dickey
commit 6abd578a6f761c6c0563d63749bb11f9277b5897
Author: Thomas E. Dickey
Date: Tue Jun 18 07:08:47 2019 -0400
force a version-bump
commit 0a19e0fcfa99cd293815d3fbe427c1e916c4f06d
Merge: b21a7e5 3e20022
Author: Thomas E. Dickey
Date: Tue Jun 18 05:08:42 2019 -0400
Merge remote-tracking branch 'upstream/master'
commit 3e2002294b130f1f46ab026075b9d7e83c94bd60
Author: Thomas E. Dickey
Date: Tue Jun 18 05:07:00 2019 -0400
fix a typo
Signed-off-by: Thomas E. Dickey
commit b21a7e5825994e5abccb852c383b944a8fe465c0
Author: Thomas E. Dickey
Date: Tue Jun 18 04:54:37 2019 -0400
fix a typo
Signed-off-by: Thomas E. Dickey
commit 0f754feedf83acde23e0bf6c0ccbd206b8e910ee
Merge: e0f591b 59d9be5
Author: Thomas E. Dickey
Date: Mon Jun 17 21:27:23 2019 -0400
Merge remote-tracking branch 'upstream/master'
commit e0f591bccd4bdee4d2288cf902404e87c0dae135
Merge: 17b7730 b0ed26a
Author: Thomas E. Dickey
Date: Mon Jun 17 04:32:54 2019 -0400
Merge branch 'master' of https://gitlab.freedesktop.org/dickey/libxt
commit 59d9be57268c14e6995dff47a9f3f9d173b2b8a0
Author: Thomas E. Dickey
Date: Mon Jun 17 03:53:23 2019 -0400
update for proposed release as 1.2.0
Signed-off-by: Thomas E. Dickey
commit ae293e379419e7e8451422fdd7a899a819db362b
Author: Thomas E. Dickey
Date: Sat Jun 15 10:45:54 2019 -0400
update to 1.1.5.3 to reflect documentation updates/review
Signed-off-by: Thomas E. Dickey
commit b0ed26a92490d28dd1dd34d221c77ebc8b8c0a89
Author: Thomas E. Dickey
Date: Sat Jun 15 10:45:54 2019 -0400
update to 1.1.5.3 to reflect documentation updates/review
Signed-off-by: Thomas E. Dickey
commit 17b77304b23965c1c8ac6a260636f37c23f60ff6
Author: Walter Harms
Date: Fri Jun 14 21:55:45 2019 +0200
remove dead code
Signed-off-by: Walter Harms
commit f09cef2528b664b0029242c5643246e28d0395b3
Author: Walter Harms
Date: Fri Jun 14 21:31:49 2019 +0200
make _XtWaitForSomething accept always the same number of arguments
to reduce the #ifdef forrest make _XtWaitForSomething
accept all arguments. Also add a dummy use for drop_lock
to avoid unused warnings
Signed-off-by: Walter Harms
commit c33fc7df82276b3dd06428d8ac34be39b6e1afd6
Author: Thomas E. Dickey
Date: Thu Jun 13 21:21:40 2019 -0400
fix some more errata, plus reformat a list for consistency
Signed-off-by: Thomas E. Dickey
commit 880876ba1aff9cf56d574d2bf486856f5bf20107
Author: Thomas E. Dickey
Date: Thu Jun 13 19:05:55 2019 -0400
fix some punctuation errata
Signed-off-by: Thomas E. Dickey
commit 86073013496a2f45ebde242001e82cf5049d51cd
Author: Thomas E. Dickey
Date: Thu Jun 13 18:28:58 2019 -0400
reduce ifdef/ifndef inconsistency for USE_POLL
Signed-off-by: Thomas E. Dickey
commit 190c027e3e594afb15c6d613d95ce5af9e22fcf7
Author: Walter Harms
Date: Mon Jun 10 13:29:14 2019 +0200
fix documentation to refect reality..
XtNewString is strdup() with NULL check. A Function not a macro.
Signed-off-by: Walter Harms
commit 26337b48bd14b40b392b76e00aaa9563658e5789
Author: Walter Harms
Date: Mon Jun 10 13:13:20 2019 +0200
remove useles else
Signed-off-by: Walter Harms
commit 17c723643d0fb218b53ed04f837addb9d7de0d15
Author: Walter Harms
Date: Mon Jun 10 12:48:46 2019 +0200
no need to check arument for XtFree()
Signed-off-by: Walter Harms
commit fbbf91c17b8a85acfe883a103b43c21ddf1e6398
Author: Thomas E. Dickey
Date: Sun Jun 9 20:21:38 2019 -0400
use strdup in two places; remove a bogus "else" from X11R6.4 changes
Signed-off-by: Thomas E. Dickey
commit 15f9eb3f0bb8cf4a5ea1279e58e1205aada3188b
Author: Thomas E. Dickey
Date: Fri Jun 7 05:27:14 2019 -0400
fix formatting errata
Signed-off-by: Thomas E. Dickey
commit 3d65748dee9a6d2e34b7cafec09b1ec7a6f5eb43
Author: Thomas E. Dickey
Date: Thu Jun 6 21:01:06 2019 -0400
correct markup for header- and library-filenames; they are not functions
Signed-off-by: Thomas E. Dickey
commit ab1b99130f98a3767589519c37ce78b3dcb8ce8e
Author: Thomas E. Dickey
Date: Thu May 30 19:59:02 2019 -0400
fix a syntax mess introduced by R6.6 ifdef'ing
Signed-off-by: Thomas E. Dickey
commit 040eeec1d8034dbf2f432d792c90dbedc5148aea
Author: Thomas E. Dickey
Date: Thu May 30 18:59:30 2019 -0400
fix fake-quotes in manpages
Signed-off-by: Thomas E. Dickey
commit fad2c6c20a793b20974a72b2fabb2eca668e69f3
Author: Thomas E. Dickey
Date: Thu May 30 18:19:28 2019 -0400
drop "session" resource XtNsession / XtCSession, which was listed in X11R6 but never defined in headers
Signed-off-by: Thomas E. Dickey
commit c588859147c66561a839bc5d2eb3d2242bd377e9
Author: Thomas E. Dickey
Date: Thu May 30 17:32:59 2019 -0400
add superscript-markup in range definitions
Signed-off-by: Thomas E. Dickey
commit 9f556b46f0009e58a2c30c3ba3c9f223ae9f6255
Author: Walter Harms
Date: Sun Jun 9 18:26:23 2019 +0200
no need to check argument for X(t)Free
Signed-off-by: Walter Harms
commit 7c0ed275e4c0e86e23c5f93647e03fa4b71797b3
Merge: d4208c7 4194ff5
Author: Walter Harms
Date: Wed Jun 5 18:58:45 2019 +0200
Merge branch 'master' of ssh://gitlab.freedesktop.org/xorg/lib/libxt
commit 4194ff5b427e39bb5325db0f377e80b3e6982e17
Author: Thomas E. Dickey
Date: Tue May 28 18:49:25 2019 -0400
fix compiler warnings when WHITEFILL is defined
Signed-off-by: Thomas E. Dickey
commit 66c1ea79516a0b31043dc604172a42cd859e5b47
Author: Thomas E. Dickey
Date: Tue May 28 18:46:27 2019 -0400
fix compiler warnings when _TRACE_HEAP is defined
Signed-off-by: Thomas E. Dickey
commit 390e9e20c029e4eb159d39bd3d79160ca4567650
Author: Thomas E. Dickey
Date: Tue May 28 18:35:16 2019 -0400
build- and compiler-warning fixes when XTTRACEMEMORY is defined
Signed-off-by: Thomas E. Dickey
commit 5ad20c90e31abfb9854cf2eae8292e44f2e18671
Author: Thomas E. Dickey
Date: Tue May 28 17:06:15 2019 -0400
build-fix and compiler-warnings when TRACE_TM is defined
Signed-off-by: Thomas E. Dickey
commit 7a6ca8784b3b1d75539962ad7b303ad0e5167e6a
Author: Thomas E. Dickey
Date: Tue May 28 05:27:52 2019 -0400
add prototype for DEBUG-function
Signed-off-by: Thomas E. Dickey
commit 7c4a5b577637f113372005fc360e03db9b058564
Author: Thomas E. Dickey
Date: Tue May 28 05:25:02 2019 -0400
fix compiler-warning when DEBUG is defined
Signed-off-by: Thomas E. Dickey
commit 9ffc4ff7eb22b96472aa299b60dc3ed1550a7d6c
Merge: 2d0140c 405e038
Author: Thomas E. Dickey
Date: Sun May 19 18:58:53 2019 -0400
Merge remote-tracking branch 'upstream/master'
commit 405e03828dfc2a3d69a32236ae8f1214e7185cff
Author: Thomas E. Dickey
Date: Sun May 19 11:35:47 2019 -0400
bump to 1.1.5.2 to reflect noreturn-changes
Signed-off-by: Thomas E. Dickey
commit 2d0140cf36ad3a3f8496d8e2da888efb9304af67
Author: Thomas E. Dickey
Date: Sun May 19 11:35:47 2019 -0400
bump to 1.1.5.2 to reflect noreturn-changes
Signed-off-by: Thomas E. Dickey
commit d4208c7734fb12adbfb5ef1b65dfcfe7126380d6
Merge: b3b86a2 4264ac5
Author: Walter Harms
Date: Sat May 18 19:31:28 2019 +0200
Merge branch 'master' of ssh://gitlab.freedesktop.org/xorg/lib/libxt
commit b3b86a2f6b974f5e040d64aa3778075c987bf0fa
Author: Walter Harms
Date: Sat May 18 19:31:08 2019 +0200
save one indent level
commit 4264ac5f8bc959844ae8ac623d4db491fc691fa5
Author: Thomas E. Dickey
Date: Fri May 17 20:39:24 2019 -0400
trim obsolete ifdef for ISC, and correct nonstandard "NaNS" to "NaN"
Signed-off-by: Thomas E. Dickey
commit 41ba4dec60f7d9495c8d45c068d5c3d17e035e1e
Author: Thomas E. Dickey
Date: Fri May 17 19:57:28 2019 -0400
use _X_NORETURN, works for gcc and clang
Signed-off-by: Thomas E. Dickey
commit 36019ab614068bdf3fc933addc3a9b4cb512c9e0
Author: Thomas E. Dickey
Date: Fri May 17 04:52:57 2019 -0400
use explicit pointer check to eliminate a clang --analyze warning in VarGet.c
Signed-off-by: Thomas E. Dickey
commit 1f0e3238352a497a59a36e0b8a5b4723c634b2e1
Author: Thomas E. Dickey
Date: Thu May 16 20:53:42 2019 -0400
fix most clang --analyze warnings about null-pointers
Signed-off-by: Thomas E. Dickey
commit fb78a7c881adbe46f1f8c6e8e429bc8963c9b3e8
Author: Thomas E. Dickey
Date: Thu May 16 17:09:13 2019 -0400
fix unused-assignment warnings (clang --analyze)
Signed-off-by: Thomas E. Dickey
commit 7fa9ee9e656ec32cc382f7acc552d0b4c9bf952c
Author: Thomas E. Dickey
Date: Thu May 16 05:21:06 2019 -0400
ensure XWindowChanges value is initialized before updating it (clang --analyze)
Signed-off-by: Thomas E. Dickey
commit 91f1119528b57f94d178f0cfb12efafd0c90bbc9
Author: Thomas E. Dickey
Date: Wed May 8 21:15:08 2019 -0400
fixes cppcheck "style" warnings (mostly variable-scope)
Signed-off-by: Thomas E. Dickey
commit 43a65ae23370e0f7fb427e96c6d9037d8fa1af35
Author: Thomas E. Dickey
Date: Wed May 8 17:56:58 2019 -0400
add casts to quiet compiler warnings with Solaris 11.4 / gcc 7.3.0
Signed-off-by: Thomas E. Dickey
commit 9c45da7cb487b8b6980ff3020468e0fb582bdd7f
Author: Thomas E. Dickey
Date: Tue May 7 20:37:37 2019 -0400
remove an #include used in debugging
Signed-off-by: Thomas E. Dickey
commit 0eedde5df39ac754623511c06c5573ad62ca4c4c
Author: Thomas E. Dickey
Date: Tue May 7 20:15:12 2019 -0400
manpage style fix: sentences should end at the end of a line
Signed-off-by: Thomas E. Dickey
commit b7a87ccb07f816e7b9579d91bd66552e86ef0e8e
Author: Thomas E. Dickey
Date: Tue May 7 20:05:38 2019 -0400
add a note pointing out the change in design
Signed-off-by: Thomas E. Dickey
commit adf962f3b2c4539e555bfda600d34b63c9e5e002
Author: Thomas E. Dickey
Date: Tue May 7 19:59:07 2019 -0400
updated spec to correspond to the current implementation of XtAppMainLoop
Signed-off-by: Thomas E. Dickey
commit 2286ca56529f27b0f6a809314e8303591c7fe240
Author: Thomas E. Dickey
Date: Tue May 7 19:42:59 2019 -0400
update manpage for changes to XtAppMainLoop()
Signed-off-by: Thomas E. Dickey
commit dc33dc58f8ec841f002b9c65fb86b879b2d7d44a
Author: Thomas E. Dickey
Date: Tue May 7 19:04:10 2019 -0400
Proposed revision of XtAppMainLoop() in
https://gitlab.freedesktop.org/xorg/lib/libxt/issues/7
caused applications such as xclock to hang, because it did first not
check if there was an available event corresponding to the mask
parameter before calling XtAppProcessEvent().
For instance, if the mask was XtIMXEvent, it would ignore timer events
until an X event occurred.
Fix this by checking with XtAppPending() when the mask is not XtIMAll.
Signed-off-by: Thomas E. Dickey
commit f0ff9ea4fc653d27db3251a5bae97df4b963b1ba
Author: Thomas E. Dickey
Date: Mon May 6 19:35:36 2019 -0400
Add related fix from
https://gitlab.freedesktop.org/xorg/lib/libxt/issues/6
https://bugs.chromium.org/p/chromium/issues/detail?id=284595
Signed-off-by: Thomas E. Dickey
commit 27778fd000d417dd81b940fc8a7855d4b4ccd068
Merge: bb511a5 0b80bc9
Author: Thomas E. Dickey