Mercurial > hg > xemacs-beta
comparison src/ExternalShell.c @ 877:e54d47b2d736
[xemacs-hg @ 2002-06-23 09:54:35 by stephent]
warning fixes <87bsa2qymn.fsf@tleepslib.sk.tsukuba.ac.jp>
unicode improvements <87znxmpc96.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Sun, 23 Jun 2002 09:54:41 +0000 |
parents | 8de8e3f6228a |
children | 8de911beca70 |
comparison
equal
deleted
inserted
replaced
876:890f3cafe600 | 877:e54d47b2d736 |
---|---|
609 | 609 |
610 static void | 610 static void |
611 hack_event_masks_1 (Display *display, Window w, int this_window_propagate) | 611 hack_event_masks_1 (Display *display, Window w, int this_window_propagate) |
612 { | 612 { |
613 Window root, parent, *children; | 613 Window root, parent, *children; |
614 unsigned int nchildren; | 614 unsigned int nchildren, i; |
615 int i; | |
616 | 615 |
617 if (!XQueryTree (display, w, &root, &parent, &children, &nchildren)) | 616 if (!XQueryTree (display, w, &root, &parent, &children, &nchildren)) |
618 return; | 617 return; |
619 for (i=0; i<nchildren; i++) | 618 for (i=0; i<nchildren; i++) |
620 hack_event_masks_1 (display, children[i], 1); | 619 hack_event_masks_1 (display, children[i], 1); |