xfree86: xf86Priv.h: drop unused xf86sFlag field

Not actually used, so no need to keep it anymore.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-21 11:38:26 +02:00
parent f7b6160be1
commit 5c76b3cdd7
3 changed files with 0 additions and 7 deletions

View File

@ -166,7 +166,6 @@ const char *xf86VisualNames[] = {
/* Parameters set only from the command line */
Bool xf86fpFlag = FALSE;
Bool xf86sFlag = FALSE;
Bool xf86bsEnableFlag = FALSE;
Bool xf86bsDisableFlag = FALSE;
Bool xf86silkenMouseDisableFlag = FALSE;

View File

@ -1026,11 +1026,6 @@ ddxProcessArgument(int argc, char **argv, int i)
xf86bsEnableFlag = TRUE;
return 0;
}
/* Notice the -s flag, but allow it to pass to the dix layer */
if (!strcmp(argv[i], "-s")) {
xf86sFlag = TRUE;
return 0;
}
if (!strcmp(argv[i], "-pixmap32") || !strcmp(argv[i], "-pixmap24")) {
/* silently accept */
return 1;

View File

@ -38,7 +38,6 @@
#include "xf86Privstr.h"
#include "input.h"
extern _X_EXPORT Bool xf86sFlag;
extern _X_EXPORT Bool xf86bsEnableFlag;
extern _X_EXPORT Bool xf86bsDisableFlag;
extern _X_EXPORT Bool xf86silkenMouseDisableFlag;