~peter-pearse/ubuntu/natty/libx11/prop001

« back to all changes in this revision

Viewing changes to src/GrKey.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau, Julien Cristau, Josh Triplett
  • Date: 2007-08-02 04:13:46 UTC
  • mfrom: (1.1.4 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20070802041346-yvhplp1k16naqg3c
Tags: 2:1.1.3-1
[ Julien Cristau ]
* New upstream release.
  + Fix locking in _XimGetWindowEventmask (closes: #427296).
  + fix XGetMotionEvents arguments order (closes: #431421).
  + XGetCommand(3) clarified (closes: #133348).
  + XrmCombineDatabase(3) fixed (closes: #393434).
* Install the upstream NEWS file in libx11-6 in addition to the git
  changelog.
* Use binary:Version instead of Source-Version in debian/control.

[ Josh Triplett ]
* Expand the description of the problem with Sun Java in libx11-6.NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include "Xlibint.h"
33
33
 
34
34
int
35
 
XGrabKey(dpy, key, modifiers, grab_window, owner_events, 
36
 
         pointer_mode, keyboard_mode)
37
 
    register Display *dpy;
38
 
    int key;
39
 
    unsigned int modifiers;
40
 
    Window grab_window;
41
 
    Bool owner_events;
42
 
    int pointer_mode, keyboard_mode;
 
35
XGrabKey(
 
36
    register Display *dpy,
 
37
    int key,
 
38
    unsigned int modifiers,
 
39
    Window grab_window,
 
40
    Bool owner_events,
 
41
    int pointer_mode, 
 
42
    int keyboard_mode)
43
43
 
44
44
{
45
45
    register xGrabKeyReq *req;