1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
|
--- specs/XProtocol/X11.protocol.orig Wed May 10 15:48:38 2000
+++ specs/XProtocol/X11.protocol Wed May 10 15:49:24 2000
@@ -1471,7 +1471,6 @@
.PN Pixmap ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request creates an unmapped window and assigns the identifier wid to it.
@@ -1961,7 +1960,6 @@
.PN Pixmap ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
The value-mask and value-list specify which attributes are to be changed.
@@ -2036,7 +2034,6 @@
.in +.2i
.LP
\fIwindow\fP\^: WINDOW
-.in -.2i
.LP
\(->
.in +.2i
@@ -2080,7 +2077,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request returns the current attributes of the window.
@@ -2101,7 +2097,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
If the argument window is mapped,
@@ -2135,7 +2130,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request performs a
@@ -2158,7 +2152,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request adds or removes the specified window from the client's
@@ -2185,7 +2178,6 @@
Errors:
.PN Match ,
.PN Window
-.in -.2i
.eM
.LP
If the window is mapped,
@@ -2240,7 +2232,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
If the window is already mapped, this request has no effect.
@@ -2278,7 +2269,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request performs a
@@ -2296,7 +2286,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
If the window is already unmapped, this request has no effect.
@@ -2315,7 +2304,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request performs an
@@ -2339,7 +2327,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request changes the configuration of the window.
@@ -2686,7 +2673,6 @@
Errors:
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
If some other client has selected
@@ -2717,7 +2703,6 @@
.in +.2i
.LP
\fIdrawable\fP\^: DRAWABLE
-.in -.2i
.LP
\(->
.in +.2i
@@ -2732,7 +2717,6 @@
.LP
Errors:
.PN Drawable
-.in -.2i
.eM
.LP
This request returns the root and current geometry of the drawable.
@@ -2755,7 +2739,6 @@
.LP
\fIwindow\fP\^: WINDOW
.LP
-.in -.2i
\(->
.in +.2i
.LP
@@ -2768,7 +2751,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request returns the root, the parent, and the children of the window.
@@ -2783,7 +2765,6 @@
\fIname\fP\^: STRING8
.br
\fIonly-if-exists\fP\^: BOOL
-.in -.2i
.LP
\(->
.in +.2i
@@ -2794,7 +2775,6 @@
Errors:
.PN Alloc ,
.PN Value
-.in -.2i
.eM
.LP
This request returns the atom for the given name.
@@ -2814,7 +2794,6 @@
.in +.2i
.LP
\fIatom\fP\^: ATOM
-.in -.2i
.LP
\(->
.in +.2i
@@ -2823,7 +2802,6 @@
.LP
Errors:
.PN Atom
-.in -.2i
.eM
.LP
This request returns the name for the given atom.
@@ -2853,7 +2831,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request alters the property for the specified window.
@@ -2904,7 +2881,6 @@
Errors:
.PN Atom ,
.PN Window
-.in -.2i
.eM
.LP
This request deletes the property from the specified window
@@ -2928,7 +2904,6 @@
\fIlong-offset\fP, \fIlong-length\fP\^: CARD32
.br
\fIdelete\fP\^: BOOL
-.in -.2i
.LP
\(->
.in +.2i
@@ -2946,7 +2921,6 @@
.PN Atom ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
If the specified property does not exist for the specified window,
@@ -3009,7 +2983,6 @@
.PN Atom ,
.PN Match ,
.PN Window
-.in -.2i
.eM
.LP
If the property names in the list are viewed as being numbered starting
@@ -3042,7 +3015,6 @@
.in +.2i
.LP
\fIwindow\fP\^: WINDOW
-.in -.2i
.LP
\(->
.in +.2i
@@ -3051,7 +3023,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request returns the atoms of properties currently defined on the window.
@@ -3073,7 +3044,6 @@
Errors:
.PN Atom ,
.PN Window
-.in -.2i
.eM
.LP
This request changes the owner, owner window,
@@ -3125,7 +3095,6 @@
.in +.2i
.LP
\fIselection\fP\^: ATOM
-.in -.2i
.LP
\(->
.in +.2i
@@ -3135,7 +3104,6 @@
.LP
Errors:
.PN Atom
-.in -.2i
.eM
.LP
This request returns the current owner window of the specified selection,
@@ -3163,7 +3131,6 @@
Errors:
.PN Atom ,
.PN Window
-.in -.2i
.eM
.LP
If the specified selection has an owner,
@@ -3197,7 +3164,6 @@
Errors:
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
If
@@ -3270,7 +3236,6 @@
.br
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.LP
\(->
.in +.2i
@@ -3286,7 +3251,6 @@
.PN Cursor ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request actively grabs control of the pointer.
@@ -3384,7 +3348,6 @@
.LP
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.eM
.LP
This request releases the pointer if this client has it actively grabbed (from
@@ -3442,7 +3405,6 @@
.PN Cursor ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request establishes a passive grab.
@@ -3520,7 +3482,6 @@
Errors:
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request releases the passive button/key combination
@@ -3551,7 +3512,6 @@
Errors:
.PN Cursor ,
.PN Value
-.in -.2i
.eM
.LP
This request changes the specified dynamic parameters if the pointer is
@@ -3579,7 +3539,6 @@
.br
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.LP
\(->
.in +.2i
@@ -3594,7 +3553,6 @@
Errors:
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request actively grabs control of the keyboard.
@@ -3675,7 +3633,6 @@
.LP
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.eM
.LP
This request releases the keyboard if this client has it actively grabbed
@@ -3722,7 +3679,6 @@
.PN Access ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request establishes a passive grab on the keyboard.
@@ -3802,7 +3758,6 @@
Errors:
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request releases the key combination on the specified window
@@ -3839,7 +3794,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request releases some queued events if the client has caused a device to
@@ -4018,7 +3972,6 @@
.in +.2i
.LP
\fIwindow\fP\^: WINDOW
-.in -.2i
.LP
\(->
.in +.2i
@@ -4036,7 +3989,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
The root window the pointer is logically on and the pointer coordinates
@@ -4067,7 +4019,6 @@
.PN CurrentTime
.br
\fIwindow\fP\^: WINDOW
-.in -.2i
.LP
\(->
.in +.2i
@@ -4084,7 +4035,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request returns all events in the motion history buffer that fall
@@ -4107,7 +4057,6 @@
\fIsrc-window\fP, \fIdst-window\fP: WINDOW
.br
\fIsrc-x\fP, \fIsrc-y\fP\^: INT16
-.in -.2i
.LP
\(->
.in +.2i
@@ -4121,7 +4070,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
The src-x and src-y coordinates are taken relative to src-window's
@@ -4154,7 +4102,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
If dst-window is
@@ -4206,7 +4153,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request changes the input focus and the last-focus-change time.
@@ -4282,7 +4228,6 @@
.Pn { Parent ,
.PN PointerRoot ,
.PN None }
-.in -.2i
.eM
.LP
This request returns the current focus state.
@@ -4296,7 +4241,6 @@
.in +.2i
.LP
keys: LISTofCARD8
-.in -.2i
.eM
.LP
This request returns a bit vector for the logical state of the keyboard.
@@ -4321,7 +4265,6 @@
.PN Alloc ,
.PN IDChoice ,
.PN Name
-.in -.2i
.eM
.LP
This request loads the specified font, if necessary,
@@ -4350,7 +4293,6 @@
.LP
Errors:
.PN Font
-.in -.2i
.eM
.LP
This request deletes the association between the resource ID and the font.
@@ -4363,7 +4305,6 @@
.in +.2i
.LP
\fIfont\fP\^: FONTABLE
-.in -.2i
.LP
\(->
.in +.2i
@@ -4404,7 +4345,6 @@
.LP
Errors:
.PN Font
-.in -.2i
.eM
.LP
This request returns logical information about a font.
@@ -4544,7 +4484,6 @@
\fIfont\fP\^: FONTABLE
.br
\fIstring\fP\^: STRING16
-.in -.2i
.LP
\(->
.in +.2i
@@ -4569,7 +4508,6 @@
.LP
Errors:
.PN Font
-.in -.2i
.eM
.LP
This request returns the logical extents of the specified string of characters
@@ -4609,13 +4547,11 @@
\fIpattern\fP\^: STRING8
.br
\fImax-names\fP\^: CARD16
-.in -.2i
.LP
\(->
.in +.2i
.LP
names: LISTofSTRING8
-.in -.2i
.eM
.LP
This request returns a list
@@ -4641,7 +4577,6 @@
\fIpattern\fP\^: STRING8
.br
\fImax-names\fP\^: CARD16
-.in -.2i
.LP
\(->+
.in +.2i
@@ -4656,7 +4591,6 @@
.LP
FONTINFO: <same type definition as in
.PN QueryFont >
-.in -.2i
.eM
.LP
This request is similar to
@@ -4685,7 +4619,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request defines the search path for font lookup.
@@ -4712,7 +4645,6 @@
.in +.2i
.LP
path: LISTofSTRING8
-.in -.2i
.eM
.LP
This request returns the current search path for fonts.
@@ -4736,7 +4668,6 @@
.PN Drawable ,
.PN IDChoice ,
.PN Value
-.in -.2i
.eM
.LP
This request creates a pixmap and assigns the identifier pid to it.
@@ -4763,7 +4694,6 @@
.LP
Errors:
.PN Pixmap
-.in -.2i
.eM
.LP
This request deletes the association between the resource ID and the pixmap.
@@ -4791,7 +4721,6 @@
.PN Match ,
.PN Pixmap ,
.PN Value
-.in -.2i
.eM
.LP
This request creates a graphics context
@@ -5670,7 +5599,6 @@
.PN Match ,
.PN Pixmap ,
.PN Value
-.in -.2i
.eM
.LP
This request changes components in gc.
@@ -5705,7 +5633,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request copies components from src-gc to dst-gc.
@@ -5731,7 +5658,6 @@
.PN Alloc ,
.PN GContext ,
.PN Value
-.in -.2i
.eM
.LP
This request sets dash-offset and dashes in gc for dashed line styles.
@@ -5810,7 +5736,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request changes clip-mask in gc to the specified list of rectangles
@@ -5866,7 +5791,6 @@
.LP
Errors:
.PN GContext
-.in -.2i
.eM
.LP
This request deletes the association between the resource ID and the gcontext
@@ -5890,7 +5814,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
The x and y coordinates are relative to the window's origin
@@ -5939,7 +5862,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request combines the specified rectangle of src-drawable with the
@@ -6006,7 +5928,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
The src-drawable must have the same root as dst-drawable (or a
@@ -6053,7 +5974,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request combines the foreground pixel in gc with the pixel
@@ -6088,7 +6008,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request draws lines between each pair of points (point[i], point[i+1]).
@@ -6145,7 +6064,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
For each segment,
@@ -6180,7 +6098,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request draws the outlines of the specified rectangles, as if a five-point
@@ -6223,7 +6140,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request draws circular or elliptical arcs.
@@ -6362,7 +6278,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request fills the region closed by the specified path.
@@ -6428,7 +6343,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request fills the specified rectangles, as if a four-point
@@ -6469,7 +6383,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
For each arc,
@@ -6547,7 +6460,6 @@
.PN GContext ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request combines an image with a rectangle of the drawable.
@@ -6617,7 +6529,6 @@
\fIformat\fP\^:
.Pn { XYPixmap ,
.PN ZPixmap }
-.in -.2i
.LP
\(->
.in +.2i
@@ -6633,7 +6544,6 @@
.PN Drawable ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request returns the contents of the given rectangle of the drawable in the
@@ -6715,7 +6625,6 @@
.PN Font ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
The x and y coordinates are relative to the drawable's origin
@@ -6776,7 +6685,6 @@
.PN Font ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request is similar to
@@ -6805,7 +6713,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
The x and y coordinates are relative to the drawable's origin
@@ -6863,7 +6770,6 @@
.PN Drawable ,
.PN GContext ,
.PN Match
-.in -.2i
.eM
.LP
This request is similar to
@@ -6896,7 +6802,6 @@
.PN Match ,
.PN Value ,
.PN Window
-.in -.2i
.eM
.LP
This request creates a colormap of the specified visual type for the screen
@@ -6965,7 +6870,6 @@
.LP
Errors:
.PN Colormap
-.in -.2i
.eM
.LP
This request deletes the association between the resource ID and the colormap
@@ -7000,7 +6904,6 @@
.PN Alloc ,
.PN Colormap ,
.PN IDChoice
-.in -.2i
.eM
.LP
This request creates a colormap of the same visual type
@@ -7041,7 +6944,6 @@
.LP
Errors:
.PN Colormap
-.in -.2i
.eM
.LP
This request makes this colormap an installed map for its screen.
@@ -7091,7 +6993,6 @@
.LP
Errors:
.PN Colormap
-.in -.2i
.eM
.LP
If cmap is on the required list for its screen (see
@@ -7120,7 +7021,6 @@
.in +.2i
.LP
\fIwindow\fP\^: WINDOW
-.in -.2i
.LP
\(->
.in +.2i
@@ -7129,7 +7029,6 @@
.LP
Errors:
.PN Window
-.in -.2i
.eM
.LP
This request returns a list of the currently installed colormaps for the
@@ -7148,7 +7047,6 @@
\fIcmap\fP\^: COLORMAP
.br
\fIred\fP, \fIgreen\fP, \fIblue\fP\^: CARD16
-.in -.2i
.LP
\(->
.in +.2i
@@ -7160,7 +7058,6 @@
Errors:
.PN Alloc ,
.PN Colormap
-.in -.2i
.eM
.LP
This request allocates a read-only colormap entry corresponding to the closest
@@ -7178,7 +7075,6 @@
\fIcmap\fP\^: COLORMAP
.br
\fIname\fP\^: STRING8
-.in -.2i
.LP
\(->
.in +.2i
@@ -7193,7 +7089,6 @@
.PN Alloc ,
.PN Colormap ,
.PN Name
-.in -.2i
.eM
.LP
This request looks up the named color with respect to the screen associated
@@ -7217,7 +7112,6 @@
\fIcolors\fP, \fIplanes\fP\^: CARD16
.br
\fIcontiguous\fP\^: BOOL
-.in -.2i
.LP
\(->
.in +.2i
@@ -7228,7 +7122,6 @@
.PN Alloc ,
.PN Colormap ,
.PN Value
-.in -.2i
.eM
.LP
The number of colors must be positive,
@@ -7271,7 +7164,6 @@
\fIcolors\fP, \fIreds\fP, \fIgreens\fP, \fIblues\fP\^: CARD16
.br
\fIcontiguous\fP\^: BOOL
-.in -.2i
.LP
\(->
.in +.2i
@@ -7284,7 +7176,6 @@
.PN Alloc ,
.PN Colormap ,
.PN Value
-.in -.2i
.eM
.LP
The number of colors must be positive,
@@ -7335,7 +7226,6 @@
.PN Access ,
.PN Colormap ,
.PN Value
-.in -.2i
.eM
.LP
The plane-mask should not have any bits in common with any of the
@@ -7400,7 +7290,6 @@
.PN Access ,
.PN Colormap ,
.PN Value
-.in -.2i
.eM
.LP
This request changes the colormap entries of the specified pixels.
@@ -7439,7 +7328,6 @@
.PN Colormap ,
.PN Name ,
.PN Value
-.in -.2i
.eM
.LP
This request looks up the named color with respect to the screen associated
@@ -7464,7 +7352,6 @@
\fIcmap\fP\^: COLORMAP
.br
\fIpixels\fP\^: LISTofCARD32
-.in -.2i
.LP
\(->
.in +.2i
@@ -7479,7 +7366,6 @@
Errors:
.PN Colormap ,
.PN Value
-.in -.2i
.eM
.LP
This request returns the hardware-specific color values stored in cmap for
@@ -7500,7 +7386,6 @@
\fIcmap\fP\^: COLORMAP
.br
\fIname\fP\^: STRING8
-.in -.2i
.LP
\(->
.in +.2i
@@ -7512,7 +7397,6 @@
Errors:
.PN Colormap ,
.PN Name
-.in -.2i
.eM
.LP
This request looks up the string name of a color with respect to the screen
@@ -7546,7 +7430,6 @@
.PN IDChoice ,
.PN Match ,
.PN Pixmap
-.in -.2i
.eM
.LP
This request creates a cursor and associates identifier cid with it.
@@ -7610,7 +7493,6 @@
.PN Font ,
.PN IDChoice ,
.PN Value
-.in -.2i
.eM
.LP
This request is similar to
@@ -7650,7 +7532,6 @@
.LP
Errors:
.PN Cursor
-.in -.2i
.eM
.LP
This request deletes the association between the resource ID and the cursor.
@@ -7670,7 +7551,6 @@
.LP
Errors:
.PN Cursor
-.in -.2i
.eM
.LP
This request changes the color of a cursor.
@@ -7691,7 +7571,6 @@
\fIdrawable\fP\^: DRAWABLE
.br
\fIwidth\fP, \fIheight\fP\^: CARD16
-.in -.2i
.LP
\(->
.in +.2i
@@ -7702,7 +7581,6 @@
.PN Drawable ,
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request returns the best size that is closest to the argument size.
@@ -7741,7 +7619,6 @@
.in +.2i
.LP
\fIname\fP\^: STRING8
-.in -.2i
.LP
\(->
.in +.2i
@@ -7753,7 +7630,6 @@
first-event: CARD8
.br
first-error: CARD8
-.in -.2i
.eM
.LP
This request determines if the named extension is present.
@@ -7782,7 +7658,6 @@
.in +.2i
.LP
names: LISTofSTRING8
-.in -.2i
.eM
.LP
This request returns a list of all extensions supported by the server.
@@ -7795,7 +7670,6 @@
\fIkeycodes-per-modifier\fP\^: CARD8
.br
\fIkeycodes\fP\^: LISTofKEYCODE
-.in -.2i
.LP
\(->
.in +.2i
@@ -7808,7 +7682,6 @@
Errors:
.PN Alloc ,
.PN Value
-.in -.2i
.eM
.LP
This request specifies the keycodes (if any) of the keys to be used as
@@ -7875,7 +7748,6 @@
keycodes-per-modifier: CARD8
.br
keycodes: LISTofKEYCODE
-.in -.2i
.eM
.LP
This request returns the keycodes of the keys being used as modifiers.
@@ -7914,7 +7786,6 @@
Errors:
.PN Alloc ,
.PN Value
-.in -.2i
.eM
.LP
This request defines the symbols for the specified number of keycodes,
@@ -7968,7 +7839,6 @@
\fIfirst-keycode\fP\^: KEYCODE
.br
\fIcount\fP\^: CARD8
-.in -.2i
.LP
\(->
.in +.2i
@@ -7979,7 +7849,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request returns the symbols for the specified number of keycodes,
@@ -8027,7 +7896,6 @@
Errors:
.PN Match ,
.PN Value
-.in -.2i
.eM
.LP
This request controls various aspects of the keyboard.
@@ -8185,7 +8053,6 @@
.PN Off }
.br
auto-repeats: LISTofCARD8
-.in -.2i
.eM
.LP
This request returns the current control values for the keyboard.
@@ -8208,7 +8075,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request rings the bell on the keyboard at a volume relative to the
@@ -8233,7 +8099,6 @@
.in +.2i
.LP
\fImap\fP\^: LISTofCARD8
-.in -.2i
.LP
\(->
.in +.2i
@@ -8244,7 +8109,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request sets the mapping of the pointer.
@@ -8283,7 +8147,6 @@
.in +.2i
.LP
map: LISTofCARD8
-.in -.2i
.eM
.LP
This request returns the current mapping of the pointer.
@@ -8306,7 +8169,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request defines how the pointer moves.
@@ -8332,7 +8194,6 @@
acceleration-numerator, acceleration-denominator: CARD16
.br
threshold: CARD16
-.in -.2i
.eM
.LP
This request returns the current acceleration and threshold for the pointer.
@@ -8357,7 +8218,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
The timeout and interval are specified in seconds;
@@ -8412,7 +8272,6 @@
allow-exposures:
.Pn { Yes ,
.PN No }
-.in -.2i
.eM
.LP
This request returns the current screen-saver control values.
@@ -8429,7 +8288,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
If the mode is
@@ -8459,7 +8317,6 @@
Errors:
.PN Access ,
.PN Value
-.in -.2i
.eM
.LP
This request adds or removes the specified host from the access control list.
@@ -8526,7 +8383,6 @@
.PN Disabled }
.br
hosts: LISTofHOST
-.in -.2i
.eM
.LP
This request returns the hosts on the access control list
@@ -8548,7 +8404,6 @@
Errors:
.PN Access ,
.PN Value
-.in -.2i
.eM
.LP
This request enables or disables the use of the access control list
@@ -8573,7 +8428,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
This request defines what will happen to the client's resources
@@ -8594,7 +8448,6 @@
.LP
Errors:
.PN Value
-.in -.2i
.eM
.LP
If a valid resource is specified,
@@ -8811,7 +8664,6 @@
\fIstate\fP\^: SETofKEYBUTMASK
.br
\fItime\fP\^: TIMESTAMP
-.in -.2i
.eM
.LP
These events are generated either when a key or button logically changes state
@@ -8953,7 +8805,6 @@
\fIstate\fP\^: SETofKEYBUTMASK
.br
\fItime\fP\^: TIMESTAMP
-.in -.2i
.eM
.LP
If pointer motion or window hierarchy change causes the pointer to be
@@ -9181,7 +9032,6 @@
\ \ \ \ \ \ \ \ \ \ \
.PN PointerRoot ,
.PN None }
-.in -.2i
.eM
.LP
These events are generated when the input focus changes
@@ -9487,7 +9337,6 @@
.in +.2i
.LP
\fIkeys\fP\^: LISTofCARD8
-.in -.2i
.eM
.LP
The value is a bit vector as described in
@@ -9510,7 +9359,6 @@
\fIx\fP, \fIy\fP, \fIwidth\fP, \fIheight\fP\^: CARD16
.br
\fIcount\fP\^: CARD16
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9592,7 +9440,6 @@
\fImajor-opcode\fP\^: CARD8
.br
\fIminor-opcode\fP\^: CARD16
-.in -.2i
.eM
.LP
This event is reported to a client using a graphics context
@@ -9632,7 +9479,6 @@
\fImajor-opcode\fP\^: CARD8
.br
\fIminor-opcode:\fP\^ CARD16
-.in -.2i
.eM
.LP
This event is reported to a client using a graphics context
@@ -9663,7 +9509,6 @@
.Pn { Unobscured ,
.PN PartiallyObscured ,
.PN FullyObscured }
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9735,7 +9580,6 @@
\fIwidth\fP, \fIheight\fP, \fIborder-width\fP\^: CARD16
.br
\fIoverride-redirect\fP\^: BOOL
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9753,7 +9597,6 @@
.in +.2i
.LP
\fIevent\fP, \fIwindow\fP\^: WINDOW
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9783,7 +9626,6 @@
\fIevent\fP, \fIwindow\fP\^: WINDOW
.br
\fIfrom-configure\fP\^: BOOL
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9809,7 +9651,6 @@
\fIevent\fP, \fIwindow\fP\^: WINDOW
.br
\fIoverride-redirect\fP\^: BOOL
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9829,7 +9670,6 @@
.in +.2i
.LP
\fIparent\fP, \fIwindow\fP\^: WINDOW
-.in -.2i
.eM
.LP
This event is reported to the client selecting
@@ -9850,7 +9690,6 @@
\fIx\fP, \fIy\fP\^: INT16
.br
\fIoverride-redirect\fP\^: BOOL
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9882,7 +9721,6 @@
.PN None
.br
\fIoverride-redirect\fP\^: BOOL
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9913,7 +9751,6 @@
\fIevent\fP, \fIwindow\fP\^: WINDOW
.br
\fIx\fP, \fIy\fP\^: INT16
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -9937,7 +9774,6 @@
\fIwindow\fP\^: WINDOW
.br
\fIwidth\fP, \fIheight\fP\^: CARD16
-.in -.2i
.eM
.LP
This event is reported to the client selecting
@@ -9971,7 +9807,6 @@
.PN Opposite }
.br
\fIvalue-mask\fP\^: BITMASK
-.in -.2i
.eM
.LP
This event is reported to the client selecting
@@ -10001,7 +9836,6 @@
\fIplace\fP\^:
.Pn { Top ,
.PN Bottom }
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -10030,7 +9864,6 @@
\fIplace\fP:
.Pn { Top ,
.PN Bottom }
-.in -.2i
.eM
.LP
This event is reported to the client selecting
@@ -10056,7 +9889,6 @@
.PN Deleted }
.br
\fItime\fP\^: TIMESTAMP
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -10093,7 +9925,6 @@
\fIselection\fP\^: ATOM
.br
\fItime\fP\^: TIMESTAMP
-.in -.2i
.eM
.LP
This event is reported to the current owner of a selection
@@ -10123,7 +9954,6 @@
.br
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.eM
.LP
This event is reported to the owner of a selection
@@ -10159,7 +9989,6 @@
.br
\fItime\fP\^: TIMESTAMP or
.PN CurrentTime
-.in -.2i
.eM
.LP
This event is generated by the server in response to a
@@ -10189,7 +10018,6 @@
\fIstate\fP\^:
.Pn { Installed ,
.PN Uninstalled }
-.in -.2i
.eM
.LP
This event is reported to clients selecting
@@ -10216,7 +10044,6 @@
.PN Pointer }
.br
\fIfirst-keycode\fP, \fIcount\fP\^: CARD8
-.in -.2i
.eM
.LP
This event is sent to all clients.
@@ -10249,7 +10076,6 @@
\fIformat\fP\^: {8, 16, 32}
.br
\fIdata\fP\^: LISTofINT8 or LISTofINT16 or LISTofINT32
-.in -.2i
.eM
.LP
This event is only generated by clients using
|