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

« back to all changes in this revision

Viewing changes to src/SelInput.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
 
XSelectInput (dpy, w, mask)
36
 
    register Display *dpy;
37
 
    Window w;
38
 
    long mask;
 
35
XSelectInput (
 
36
    register Display *dpy,
 
37
    Window w,
 
38
    long mask)
39
39
{
40
40
    register xChangeWindowAttributesReq *req;
41
41