mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Merge remote branch 'whot/for-keith'
This commit is contained in:
@@ -1095,7 +1095,7 @@ DGAProcessPointerEvent (ScreenPtr pScreen, DGAEvent *event, DeviceIntPtr mouse)
|
||||
ev.header = ET_Internal;
|
||||
ev.length = sizeof(ev);
|
||||
ev.type = event->subtype;
|
||||
ev.corestate = butc->state;
|
||||
ev.corestate = butc ? butc->state : 0;
|
||||
if (master && master->key)
|
||||
ev.corestate |= XkbStateFieldFromRec(&master->key->xkbInfo->state);
|
||||
|
||||
|
||||
@@ -66,6 +66,7 @@
|
||||
#include "xf86InPriv.h"
|
||||
#include "compiler.h"
|
||||
#include "extinit.h"
|
||||
#include "loaderProcs.h"
|
||||
|
||||
#ifdef DPMSExtension
|
||||
#include <X11/extensions/dpmsconst.h>
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
.\" $XdotOrg: xserver/xorg/hw/xfree86/doc/man/Xorg.man.pre,v 1.3 2005/07/04 18:41:01 ajax Exp $
|
||||
.\" shorthand for double quote that works everywhere.
|
||||
.ds q \N'34'
|
||||
.TH __xservername__ __appmansuffix__ __vendorversion__
|
||||
.SH NAME
|
||||
__xservername__ - X11R7 X server
|
||||
@@ -440,6 +442,14 @@ Immediately kills the server -- no questions asked. It can be disabled by
|
||||
setting the
|
||||
.B DontZap
|
||||
__xconfigfile__(__filemansuffix__) file option to a TRUE value.
|
||||
.PP
|
||||
.RS 8
|
||||
It should be noted that zapping is triggered by the
|
||||
.B Terminate_Server
|
||||
action in the keyboard map. This action is not part of the default keymaps
|
||||
but can be enabled with the XKB option
|
||||
.B \*qterminate:ctrl_alt_bksp\*q.
|
||||
.RE
|
||||
.TP 8
|
||||
.B Ctrl+Alt+Keypad-Plus
|
||||
Change video mode to next one specified in the configuration file.
|
||||
|
||||
@@ -277,8 +277,9 @@ xf86OpenConsole(void)
|
||||
tcsetattr(xf86Info.consoleFd, TCSANOW, &nTty);
|
||||
|
||||
/* need to keep the buffer clean, else the kernel gets angry */
|
||||
console_handler = xf86AddGeneralHandler(xf86Info.consoleFd,
|
||||
drain_console, NULL);
|
||||
if (xf86Info.allowEmptyInput)
|
||||
console_handler = xf86AddGeneralHandler(xf86Info.consoleFd,
|
||||
drain_console, NULL);
|
||||
|
||||
/* we really should have a InitOSInputDevices() function instead
|
||||
* of Init?$#*&Device(). So I just place it here */
|
||||
|
||||
Reference in New Issue
Block a user