summaryrefslogtreecommitdiff
path: root/debian/patches/manpage-hyphen-minus.patch
blob: 275043a0cddbd0f1ad188fa19be3df5f0715e521 (plain)
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
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
Description: Fix all spotted hyphen-used-as-minus-sign manpage errors
 Automatically generated using sed -i -s 's/^-/\\-/g;s/ -/ \\-/g' man/*.man*
 Also fix a missing backslash escape
Author: Didier Raboud <odyx@debian.org>
Origin: vendor
Bug-Upstream: https://cups.org/str.php?L4299
Last-Update: 2014-04-10

--- a/man/cups-files.conf.man.in
+++ b/man/cups-files.conf.man.in
@@ -53,7 +53,7 @@
 .TP 5
 FatalErrors none
 .TP 5
-FatalErrors all -kind [... -kind]
+FatalErrors all \-kind [... \-kind]
 .TP 5
 FatalErrors kind [... kind]
 .br
--- a/man/cupsd.man.in
+++ b/man/cupsd.man.in
@@ -17,9 +17,9 @@
 cupsd \- cups scheduler
 .SH SYNOPSIS
 .B cupsd
-[ -c
+[ \-c
 .I config-file
-] [ -f ] [ -F ] [ -h ] [ -l ] [ -t ]
+] [ \-f ] [ \-F ] [ \-h ] [ \-l ] [ \-t ]
 .SH DESCRIPTION
 \fIcupsd\fR is the scheduler for CUPS. It implements a printing system based
 upon the Internet Printing Protocol, version 2.1.  If no options are specified
@@ -27,31 +27,31 @@
 \fI/etc/cups/cupsd.conf\fR will be used.
 .SH OPTIONS
 .TP 5
--c config-file
+\-c config-file
 .br
 Uses the named configuration file.
 .TP 5
--f
+\-f
 .br
 Run \fIcupsd\fR in the foreground; the default is to run in the
 background as a "daemon".
 .TP 5
--F
+\-F
 .br
 Run \fIcupsd\fR in the foreground but detach the process from the
 controlling terminal and current directory. This is useful for
 running \fIcupsd\fR from \fIinit(8)\fR.
 .TP 5
--h
+\-h
 .br
 Shows the program usage.
 .TP 5
--l
+\-l
 .br
 This option is passed to \fIcupsd\fR when it is run from
 \fIlaunchd(8)\fR.
 .TP 5
--t
+\-t
 .br
 Test the configuration file for syntax errors.
 .SH COMPATIBILITY
--- a/man/cupsfilter.man
+++ b/man/cupsfilter.man
@@ -16,27 +16,27 @@
 cupsfilter \- convert a file to another format using cups filters
 .SH SYNOPSIS
 .B cupsfilter
-[ -D ] [ -U
+[ \-D ] [ \-U
 .I user
-] [ -c
+] [ \-c
 .I config-file
-] [ -d
+] [ \-d
 .I printer
-] [ -e ] [ -i
+] [ \-e ] [ \-i
 .I mime/type
-] [ -j
+] [ \-j
 .I job-id[,N]
-] [ -m
+] [ \-m
 .I mime/type
-] [ -n
+] [ \-n
 .I copies
-] [ -o
+] [ \-o
 .I name=value
-] [ -p
+] [ \-p
 .I filename.ppd
-] [ -t
+] [ \-t
 .I title
-] [ -u ]
+] [ \-u ]
 .I filename
 .SH DESCRIPTION
 \fIcupsfilter\fR is a front-end to the CUPS filter subsystem which allows you
@@ -45,58 +45,58 @@
 file is sent to the standard output.
 .SH OPTIONS
 .TP 5
--D
+\-D
 .br
 Delete the input file after conversion.
 .TP 5
--U user
+\-U user
 .br
 Specifies the username passed to the filters. The default is the name of the current user.
 .TP 5
--c config-file
+\-c config-file
 .br
 Uses the named cups-files.conf configuration file.
 .TP 5
--d printer
+\-d printer
 Uses information from the named printer.
 .TP 5
--e
+\-e
 .br
 Use every filter from the PPD file.
 .TP 5
--i mime/type
+\-i mime/type
 .br
 Specifies the source file type. The default file type is guessed using the
 filename and contents of the file.
 .TP 5
--j job-id[,N]
+\-j job-id[,N]
 .br
 Converts document N from the specified job. If N is omitted, document 1 is
 converted.
 .TP 5
--m mime/type
+\-m mime/type
 .br
 Specifies the destination file type. The default file type is application/pdf.
 Use printer/foo to convert to the printer format defined by the filters in the
 PPD file.
 .TP 5
--n copies
+\-n copies
 .br
 Specifies the number of copies to generate.
 .TP 5
--o name=value
+\-o name=value
 .br
 Specifies options to pass to the CUPS filters.
 .TP 5
--p filename.ppd
+\-p filename.ppd
 .br
 Specifies the PPD file to use.
 .TP 5
--t title
+\-t title
 .br
 Specifies the document title.
 .TP 5
--u
+\-u
 .br
 Delete the PPD file after conversion.
 .SH SEE ALSO
--- a/man/lpq.man
+++ b/man/lpq.man
@@ -17,13 +17,13 @@
 lpq \- show printer queue status
 .SH SYNOPSIS
 .B lpq
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -P
+] [ \-P
 .I destination[/instance]
-] [ -a ] [ -l ] [
+] [ \-a ] [ \-l ] [
 .I +interval
 ]
 .SH DESCRIPTION
@@ -37,27 +37,27 @@
 .SH OPTIONS
 \fIlpq\fR supports the following options:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--P destination[/instance]
+\-P destination[/instance]
 .br
 Specifies an alternate printer or class name.
 .TP 5
--U username
+\-U username
 .br
 Specifies an alternate username.
 .TP 5
--a
+\-a
 .br
 Reports jobs on all printers.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Specifies an alternate server.
 .TP 5
--l
+\-l
 .br
 Requests a more verbose (long) reporting format.
 .SH SEE ALSO
--- a/man/backend.man
+++ b/man/backend.man
@@ -53,7 +53,7 @@
 Unless you are a developer and know what you are doing, please do not run
 backends directly. Instead, use the \fIlp(1)\fR or \fIlpr(1)\fR programs to send
 a print job or \fIlpinfo(8)\fR program to query for available printers using the
-backend. The one exception is the SNMP backend - see \fIsnmpbackend(8)\fR for
+backend. The one exception is the SNMP backend \- see \fIsnmpbackend(8)\fR for
 more information.
 .SH DEVICE DISCOVERY
 When run with no arguments, the backend should list the devices and schemes it
@@ -151,7 +151,7 @@
 6 (CUPS_BACKEND_RETRY)
 .br
 The print file was not successfully transmitted because of a temporary issue.
-The scheduler will retry the job at a future time - other jobs may print before
+The scheduler will retry the job at a future time \- other jobs may print before
 this one.
 .TP 5
 7 (CUPS_BACKEND_RETRY_CURRENT)
--- a/man/cancel.man
+++ b/man/cancel.man
@@ -14,16 +14,16 @@
 .\"
 .TH cancel 1 "CUPS" "21 January 2013" "Apple Inc."
 .SH NAME
-cancel - cancel jobs
+cancel \- cancel jobs
 .SH SYNOPSIS
 .B cancel
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -a ] [ -h
+] [ \-a ] [ \-h
 .I hostname[:port]
-] [ -u
+] [ \-u
 .I username
-] [ -x ] [
+] [ \-x ] [
 .I id
 ] [
 .I destination
@@ -36,28 +36,28 @@
 .SH OPTIONS
 The following options are recognized by \fIcancel\fR:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--U username
+\-U username
 .br
 Specifies the username to use when connecting to the server.
 .TP 5
--a
+\-a
 .br
 Cancel all jobs on the named destination, or all jobs on all
 destinations if none is provided.
 .TP 5
--h hostname[:port]
+\-h hostname[:port]
 .br
 Chooses an alternate server.
 .TP 5
--u username
+\-u username
 .br
 Cancels jobs owned by \fIusername\fR.
 .TP 5
--x
+\-x
 .br
 Deletes job data files in addition to canceling.
 .SH COMPATIBILITY
--- a/man/cups-config.man
+++ b/man/cups-config.man
@@ -17,38 +17,38 @@
 cups-config \- get cups api, compiler, directory, and link information.
 .SH SYNOPSIS
 .B cups-config
---api-version
+\--api-version
 .br
 .B cups-config
---build
+\--build
 .br
 .B cups-config
---cflags
+\--cflags
 .br
 .B cups-config
---datadir
+\--datadir
 .br
 .B cups-config
---help
+\--help
 .br
 .B cups-config
---ldflags
+\--ldflags
 .br
 .B cups-config
 [
-.I --image
+.I \--image
 ] [
-.I --static
-] --libs
+.I \--static
+] \--libs
 .br
 .B cups-config
---serverbin
+\--serverbin
 .br
 .B cups-config
---serverroot
+\--serverroot
 .br
 .B cups-config
---version
+\--version
 .br
 .SH DESCRIPTION
 \fBcups-config\fR is the CUPS program configuration utility. It should be
@@ -57,54 +57,54 @@
 directories for filters, configuration files, and drivers.
 .SH OPTIONS
 .TP 5
---api-version
+\--api-version
 .br
 Displays the current API version (major.minor).
 .TP 5
---build
+\--build
 .br
 Displays a system-specific build number.
 .TP 5
---cflags
+\--cflags
 .br
 Displays the necessary compiler options.
 .TP 5
---datadir
+\--datadir
 .br
 Displays the default CUPS data directory.
 .TP 5
---help
+\--help
 .br
 Displays the program usage message.
 .TP 5
---image
+\--image
 .br
 When used with \fI--libs\fR, adds the CUPS imaging library to the
 list of displayed libraries.
 .TP 5
---ldflags
+\--ldflags
 .br
 Displays the necessary linker options.
 .TP 5
---libs
+\--libs
 .br
 Displays the necessary librarys to link to.
 .TP 5
---serverbin
+\--serverbin
 .br
 Displays the default CUPS binary directory,
 where filters and backends are stored.
 .TP 5
---serverroot
+\--serverroot
 .br
 Displays the default CUPS configuration file directory.
 .TP 5
---static
+\--static
 .br
 When used with \fI--libs\fR, shows the static libraries instead
 of the default (shared) libraries.
 .TP 5
---version
+\--version
 .br
 Displays the full version number of the CUPS installation
 (major.minor.patch).
--- a/man/cups-deviced.man.in
+++ b/man/cups-deviced.man.in
@@ -25,7 +25,7 @@
 \fICUPS-Get-Devices\fR request. The output format is an IPP
 response message. The \fIrequest-id\fR argument is the request ID
 from the original IPP request, typically 1. The \fIlimit\fR
-argument is the limit value from the original IPP request - 0
+argument is the limit value from the original IPP request \- 0
 means no limit. The \fIuser-id\fR argument is the
 requesting-user-name value from the original IPP request.
 Finally, the \fIoptions\fR argument is a space-delimited list of
--- a/man/cups-driverd.man.in
+++ b/man/cups-driverd.man.in
@@ -34,7 +34,7 @@
 format is an IPP response message. The \fIrequest_id\fR argument
 is the request ID from the original IPP request, typically 1. The
 \fIlimit\fR argument is the limit value from the original IPP
-request - 0 means no limit. Finally, the \fIoptions\fR argument
+request \- 0 means no limit. Finally, the \fIoptions\fR argument
 is a space-delimited list of attributes ("name=value name=value
 \&...") that were passed in with the request. Currently
 \fIcups-driverd\fR looks for the \fIppd-make\fR and
--- a/man/cups-lpd.man.in
+++ b/man/cups-lpd.man.in
@@ -17,9 +17,9 @@
 cups-lpd \- receive print jobs and report printer status to lpd clients
 .SH SYNOPSIS
 .B cups-lpd
-[ -h
+[ \-h
 .I hostname[:port]
-] [ -n ] [ -o
+] [ \-n ] [ \-o
 .I option=value
 ]
 .SH DESCRIPTION
@@ -34,7 +34,7 @@
 .nf
 
     printer stream tcp nowait lp /usr/lib/cups/daemon/cups-lpd cups-lpd \\
-        -o document-format=application/octet-stream
+        \-o document-format=application/octet-stream
 .fi
 .LP
 .LP
@@ -56,22 +56,22 @@
 	group = sys
 	passenv =
         server = /usr/lib/cups/daemon/cups-lpd
-	server_args = -o document-format=application/octet-stream
+	server_args = \-o document-format=application/octet-stream
     }
 .fi
 .SH OPTIONS
 .TP 5
--h hostname[:port]
+\-h hostname[:port]
 .br
 Sets the CUPS server (and port) to use.
 .TP 5
--n
+\-n
 .br
 Disables reverse address lookups; normally \fIcups-lpd\fR will
 try to discover the hostname of the client via a reverse DNS
 lookup.
 .TP 5
--o name=value
+\-o name=value
 .br
 Inserts options for all print queues. Most often this is used to
 disable the "l" filter so that remote print jobs are filtered as
--- a/man/cups-snmp.man.in
+++ b/man/cups-snmp.man.in
@@ -21,7 +21,7 @@
 .B /usr/libexec/cups/backend/snmp
 .I ip-address-or-hostname
 .br
-.B lpinfo -v --include-schemes snmp
+.B lpinfo \-v \--include-schemes snmp
 .SH DESCRIPTION
 The CUPS SNMP backend provides legacy discovery and identification of network
 printers using SNMPv1. When used for discovery through the scheduler, the
--- a/man/cupsaccept.man
+++ b/man/cupsaccept.man
@@ -17,18 +17,18 @@
 cupsaccept/cupsreject \- accept/reject jobs sent to a destination
 .SH SYNOPSIS
 .B cupsaccept
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I hostname[:port]
 ] destination(s)
 .br
 .B cupsreject
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I hostname[:port]
-] [ -r
+] [ \-r
 .I reason
 ] destination(s)
 .SH DESCRIPTION
@@ -42,19 +42,19 @@
 The following options are supported by both \fIcupsaccept\fR and
 \fIcupsreject\fR:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--U username
+\-U username
 .br
 Sets the username that is sent when connecting to the server.
 .TP 5
--h hostname[:port]
+\-h hostname[:port]
 .br
 Chooses an alternate server.
 .TP 5
--r "reason"
+\-r "reason"
 .br
 Sets the reason string that is shown for a printer that is
 rejecting jobs.
--- a/man/cupsaddsmb.man.in
+++ b/man/cupsaddsmb.man.in
@@ -18,22 +18,22 @@
 
 .SH SYNOPSIS
 .B cupsaddsmb
-[ -H
+[ \-H
 .I samba-server
-] [ -U
+] [ \-U
 .I samba-user[%samba-password]
-] [ -h
+] [ \-h
 .I cups-server[:port]
-] [ -v ] -a
+] [ \-v ] \-a
 .br
 .B cupsaddsmb
-[ -H
+[ \-H
 .I samba-server
-] [ -U
+] [ \-U
 .I samba-user[%samba-password]
-] [ -h
+] [ \-h
 .I cups-server[:port]
-] [ -v ] printer [ ... printer ]
+] [ \-v ] printer [ ... printer ]
 
 .SH DESCRIPTION
 \fIcupsaddsmb\fR exports printers to the SAMBA software (version
@@ -45,27 +45,27 @@
 .SH OPTIONS
 \fIcupsaddsmb\fR supports the following options:
 .TP 5
--H samba-server
+\-H samba-server
 .br
 Specifies the SAMBA server which defaults to the CUPS server.
 .TP 5
--U samba-user[%samba-password]
+\-U samba-user[%samba-password]
 .br
 Specifies the SAMBA print admin username which defaults to your
 current username. If the username contains a percent (%)
 character, then the text following the percent is treated as the
 SAMBA password to use.
 .TP 5
--a
+\-a
 .br
 Exports all known printers. Otherwise only the named printers are
 exported.
 .TP 5
--h cups-server[:port]
+\-h cups-server[:port]
 .br
 Specifies a different CUPS server to use.
 .TP 5
--v
+\-v
 .br
 Specifies that verbose information should be shown. This is
 useful for debugging SAMBA configuration problems.
@@ -133,7 +133,7 @@
     pscript5.dll
 .fi
 .LP
-\fBNote:\fR Unlike Windows, case is significant - make sure that
+\fBNote:\fR Unlike Windows, case is significant \- make sure that
 you use the lowercase filenames shown above, otherwise
 \fIcupsaddsmb\fR will fail to export the drivers.
 
@@ -158,7 +158,7 @@
     PSMON.DLL
 .fi
 .LP
-\fBNote:\fR Unlike Windows, case is significant - make sure that
+\fBNote:\fR Unlike Windows, case is significant \- make sure that
 you use the UPPERCASE filenames shown above, otherwise
 \fIcupsaddsmb\fR will fail to export the drivers.
 
--- a/man/cupsctl.man
+++ b/man/cupsctl.man
@@ -17,12 +17,12 @@
 cupsctl \- configure cupsd.conf options
 .SH SYNOPSIS
 .B cupsctl
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ --[no-]debug-logging ] [ --[no-]remote-admin ] [ --[no-]remote-any ]
-[ --[no-]share-printers ] [ --[no-]user-cancel-any ]
+] [ \-\-[no-]debug-logging ] [ \-\-[no-]remote-admin ] [ \-\-[no-]remote-any ]
+[ \-\-[no-]share-printers ] [ \-\-[no-]user-cancel-any ]
 [
 .I name=value
 ]
@@ -33,35 +33,35 @@
 .SH OPTIONS
 The following options are recognized:
 .TP 5
--E
+\-E
 .br
 Enables encryption on the connection to the scheduler.
 .TP 5
--U \fIusername\fR
+\-U \fIusername\fR
 .br
 Specifies an alternate username to use when authenticating with the scheduler.
 .TP 5
--h \fIserver[:port]\fR
+\-h \fIserver[:port]\fR
 .br
 Specifies the server address.
 .TP 5
---[no-]debug-logging
+\--[no-]debug-logging
 .br
 Enables or disables debug logging in the \fBerror_log\fR file.
 .TP 5
---[no-]remote-admin
+\--[no-]remote-admin
 .br
 Enables or disables remote administration.
 .TP 5
---[no-]remote-any
+\--[no-]remote-any
 .br
 Enables or disables printing from any address, e.g. the Internet.
 .TP 5
---[no-]share-printers
+\--[no-]share-printers
 .br
 Enables or disables sharing of local printers with other computers.
 .TP 5
---[no-]user-cancel-any
+\--[no-]user-cancel-any
 .br
 Allows or prevents users from canceling jobs owned by others.
 .SH EXAMPLES
@@ -72,17 +72,17 @@
 .LP
 Enable debug logging:
 .nf
-    cupsctl --debug-logging
+    cupsctl \--debug-logging
 .fi
 .LP
 Get the current debug logging state:
 .nf
-    cupsctl | grep '^_debug_logging' | awk -F= '{print $2}'
+    cupsctl | grep '^_debug_logging' | awk \-F= '{print $2}'
 .fi
 .LP
 Disable printer sharing:
 .nf
-    cupsctl --no-share-printers
+    cupsctl \--no-share-printers
 .fi
 .SH KNOWN ISSUES
 You cannot set the Listen or Port directives using \fIcupsctl\fR.
--- a/man/cupsenable.man
+++ b/man/cupsenable.man
@@ -17,53 +17,53 @@
 cupsdisable, cupsenable \- stop/start printers and classes
 .SH SYNOPSIS
 .B cupsdisable
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -c ] [ -h
+] [ \-c ] [ \-h
 .I server[:port]
-] [ -r
+] [ \-r
 .I reason
-] [ --hold ] destination(s)
+] [ \-\-hold ] destination(s)
 .br
 .B cupsenable
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -c ] [ -h
+] [ \-c ] [ \-h
 .I server[:port]
-] [ --release ] destination(s)
+] [ \--release ] destination(s)
 .SH DESCRIPTION
 \fIcupsenable\fR starts the named printers or classes.
 .LP
 \fIcupsdisable\fR stops the named printers or classes.  The
 following options may be used:
 .TP 5
--E
+\-E
 .br
 Forces encryption of the connection to the server.
 .TP 5
--U username
+\-U username
 .br
 Uses the specified username when connecting to the server.
 .TP 5
--c
+\-c
 .br
 Cancels all jobs on the named destination.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Uses the specified server and port.
 .TP 5
---hold
+\--hold
 .br
 Holds remaining jobs on the named printer.  Useful for allowing the current
 job to complete before performing maintenance.
 .TP 5
--r "reason"
+\-r "reason"
 .br
 Sets the message associated with the stopped state. If no reason is specified
 then the message is set to "Reason Unknown".
 .TP 5
---release
+\--release
 .br
 Releases pending jobs for printing. Use after running \fIcupsdisable\fR with
 the \fI--hold\fR option to resume printing.
--- a/man/cupstestdsc.man
+++ b/man/cupstestdsc.man
@@ -17,12 +17,12 @@
 cupstestdsc \- test conformance of postscript files
 .SH SYNOPSIS
 .B cupstestdsc
-[ -h ] filename.ps [ ...
+[ \-h ] filename.ps [ ...
 .I filenameN.ps
 ]
 .br
 .B cupstestdsc
-[ -h ] -
+[ \-h ] \-
 .SH DESCRIPTION
 \fIcupstestdsc\fR tests the conformance of PostScript files to
 the Adobe PostScript Language Document Structuring Conventions
--- a/man/cupstestppd.man
+++ b/man/cupstestppd.man
@@ -17,20 +17,20 @@
 cupstestppd \- test conformance of ppd files
 .SH SYNOPSIS
 .B cupstestppd
-[ -I
+[ \-I
 .I category
-] [ -R
+] [ \-R
 .I rootdir
-] [ -W
+] [ \-W
 .I category
-] [ -q ] [-r] [ -v[v] ] filename.ppd[.gz] [ ... filenameN.ppd[.gz] ]
+] [ \-q ] [\-r] [ \-v[v] ] filename.ppd[.gz] [ ... filenameN.ppd[.gz] ]
 .br
 .B cupstestppd
-[ -R
+[ \-R
 .I rootdir
-] [ -W
+] [ \-W
 .I category
-] [ -q ] [-r] [ -v[v] ] -
+] [ \-q ] [\-r] [ \-v[v] ] \-
 .SH DESCRIPTION
 \fIcupstestppd\fR tests the conformance of PPD files to the
 Adobe PostScript Printer Description file format specification
@@ -44,71 +44,71 @@
 .SH OPTIONS
 \fIcupstestppd\fR supports the following options:
 .TP 5
--I filename
+\-I filename
 .br
 Ignores all PCFileName warnings.
 .TP 5
--I filters
+\-I filters
 .br
 Ignores all filter errors.
 .TP 5
--I profiles
+\-I profiles
 .br
 Ignores all profile errors.
 .TP 5
--R rootdir
+\-R rootdir
 .br
 Specifies an alternate root directory for the filter, pre-filter,
 and other support file checks.
 .TP 5
--W constraints
+\-W constraints
 .br
 Report all UIConstraint errors as warnings.
 .TP 5
--W defaults
+\-W defaults
 .br
 Except for size-related options, report all default option errors as warnings.
 .TP 5
--W filters
+\-W filters
 .br
 Report all filter errors as warnings.
 .TP 5
--W profiles
+\-W profiles
 .br
 Report all profile errors as warnings.
 .TP 5
--W sizes
+\-W sizes
 .br
 Report all media size errors as warnings.
 .TP 5
--W translations
+\-W translations
 .br
 Report all translation errors as warnings.
 .TP 5
--W all
+\-W all
 .br
 Report all of the previous errors as warnings.
 .TP 5
--W none
+\-W none
 .br
 Report all of the previous errors as errors.
 .TP 5
--q
+\-q
 .br
 Specifies that no information should be displayed.
 .TP 5
--r
+\-r
 .br
 Relaxes the PPD conformance requirements so that common
 whitespace, control character, and formatting problems are not
 treated as hard errors.
 .TP 5
--v
+\-v
 .br
 Specifies that detailed conformance testing results should be
 displayed rather than the concise PASS/FAIL/ERROR status.
 .TP 5
--vv
+\-vv
 .br
 Specifies that all information in the PPD file should be
 displayed in addition to the detailed conformance testing
@@ -140,7 +140,7 @@
 conform:
 .nf
 
-    find . -name \\*.ppd \\! -exec cupstestppd -q '{}' \\; -print
+    find . \-name \\*.ppd \\! \-exec cupstestppd \-q '{}' \\; \-print
 
 .fi
 The next command tests all PPD files under the current directory
@@ -148,8 +148,8 @@
 that do not conform:
 .nf
 
-    find . -name \\*.ppd \\! -exec cupstestppd -q '{}' \\; \\
-        -exec cupstestppd -v '{}' \\;
+    find . \-name \\*.ppd \\! \-exec cupstestppd \-q '{}' \\; \\
+        \-exec cupstestppd \-v '{}' \\;
 
 .fi
 .SH SEE ALSO
--- a/man/filter.man
+++ b/man/filter.man
@@ -44,10 +44,10 @@
 .SH OPTIONS
 Options passed on the command-line typically do not include the default choices
 the printer's PPD file. In addition, some options may be specified in multiple
-ways - "landscape" is a synonym for "orientation-requested=4", "media" is a
+ways \- "landscape" is a synonym for "orientation-requested=4", "media" is a
 synonym for "PageSize", "PageRegion", "InputSlot", and "MediaType", and "sides"
 is a synonym for the various "Duplex" options. Non-raster filters \fBmust\fR
-support both explicit and implicit specification of PPD options - use the
+support both explicit and implicit specification of PPD options \- use the
 ppdMarkDefaults and cupsMarkOptions functions in the CUPS library to use the
 correct mapping, and ppdFindMarkedChoice to get the user-selected choice.
 .LP
@@ -127,7 +127,7 @@
 .TP 5
 STATE: + printer-state-reason [printer-state-reason ...]
 .TP 5
-STATE: - printer-state-reason [printer-state-reason ...]
+STATE: \- printer-state-reason [printer-state-reason ...]
 .br
 Sets, adds, or removes printer-state-reason keywords to the
 current queue. Typically this is used to indicate media, ink, and
--- a/man/ipptool.man
+++ b/man/ipptool.man
@@ -13,23 +13,23 @@
 .\"
 .TH ipptool 1 "CUPS" "20 February 2014" "Apple Inc."
 .SH NAME
-ipptool - perform internet printing protocol requests
+ipptool \- perform internet printing protocol requests
 .SH SYNOPSIS
 .B ipptool
-[ --help ] [ --stop-after-include-error ] [ --version ]
-[ -4 ] [ -6 ] [ -C ] [ -E ] [ -I ] [ -L ] [ -S ] [ -T
+[ \--help ] [ \--stop-after-include-error ] [ \--version ]
+[ \-4 ] [ \-6 ] [ \-C ] [ \-E ] [ \-I ] [ \-L ] [ \-S ] [ \-T
 .I seconds
-] [ -V
+] [ \-V
 .I version
-] [ -X ] [ -c ] [ -d
+] [ \-X ] [ \-c ] [ \-d
 .I name=value
-] [ -f
+] [ \-f
 .I filename
-] [ -i
+] [ \-i
 .I seconds
-] [ -n
+] [ \-n
 .I repeat-count
-] [ -q ] [ -t ] [ -v ]
+] [ \-q ] [ \-t ] [ \-v ]
 .I URI
 .I filename
 [
@@ -40,67 +40,67 @@
 .SH OPTIONS
 The following options are recognized by \fIipptool\fR:
 .TP 5
---help
+\--help
 Shows program help.
 .TP 5
---stop-after-include-error
+\--stop-after-include-error
 Tells \fIipptool\fR to stop if an error occurs in an included file. Normally \fIipptool\fR will continue with subsequent tests after the INCLUDE directive.
 .TP 5
---version
+\--version
 Shows the version of \fIipptool\fR being used.
 .TP 5
--4
+\-4
 Specifies that \fIipptool\fR must connect to the printer or server using IPv4.
 .TP 5
--6
+\-6
 Specifies that \fIipptool\fR must connect to the printer or server using IPv6.
 .TP 5
--C
+\-C
 Specifies that requests should be sent using the HTTP/1.1 "Transfer-Encoding: chunked" header, which is required for conformance by all versions of IPP. The default is to use "Transfer-Encoding: chunked" for requests with attached files and "Content-Length:" for requests without attached files.
 .TP 5
--E
+\-E
 Forces TLS encryption when connecting to the server using the HTTP "Upgrade" header.
 .TP 5
--I
+\-I
 Specifies that \fIipptool\fR will continue past errors.
 .TP 5
--L
+\-L
 Specifies that requests should be sent using the HTTP/1.0 "Content-Length:" header, which is required for conformance by all versions of IPP. The default is to use "Transfer-Encoding: chunked" for requests with attached files and "Content-Length:" for requests without attached files.
 .TP 5
--S
+\-S
 Forces (dedicated) SSL encryption when connecting to the server.
 .TP 5
--T seconds
+\-T seconds
 Specifies a timeout for IPP requests in seconds.
 .TP 5
--V version
+\-V version
 Specifies the default IPP version to use: 1.0, 1.1, 2.0, 2.1, or 2.2. If not specified, version 1.1 is used.
 .TP 5
--X
+\-X
 Specifies that XML (Apple plist) output is desired instead of the plain text report. This option is incompatible with the \fI-i\fR (interval) and \fI-n\fR (repeat-count) options.
 .TP 5
--c
+\-c
 Specifies that CSV (comma-separated values) output is desired instead of the plain text output.
 .TP 5
--d name=value
+\-d name=value
 Defines the named variable.
 .TP 5
--f filename
+\-f filename
 Defines the default request filename for tests.
 .TP 5
--i seconds
+\-i seconds
 Specifies that the (last) file should be repeated at the specified interval. This option is incompatible with the \fI-X\fR (XML plist output) option.
 .TP 5
--l
+\-l
 Specifies that plain text output is desired.
 .TP 5
--n repeat-count
+\-n repeat-count
 Specifies that the (last) file should be repeated the specified number of times. This option is incompatible with the \fI-X\fR (XML plist output) option.
 .TP 5
--t
+\-t
 Specifies that CUPS test report output is desired instead of the plain text output.
 .TP 5
--v
+\-v
 Specifies that all request and response attributes should be output in CUPS test mode (\fI-t\fR). This is the default for XML output.
 .SH EXIT CODE
 The \fIipptool\fR program returns 0 if all tests were sucessful and 1 otherwise.
@@ -114,7 +114,7 @@
 .LP
 Send email notifications to "user@example.com" when "myprinter" changes:
 .nf
-    ipptool -d recipient=mailto:user@example.com \
+    ipptool \-d recipient=mailto:user@example.com \
         ipp://localhost/printers/myprinter create-printer-subscription.test
 .fi
 .SH STANDARD FILES
--- a/man/ipptoolfile.man
+++ b/man/ipptoolfile.man
@@ -72,7 +72,7 @@
 .TP 5
 DEFINE variable-name value
 Defines the named variable to the given value. This is equivalent to specifying
-"-d variable-name=value" on the \fIipptool\fR command-line.
+"\-d variable-name=value" on the \fIipptool\fR command-line.
 .TP 5
 DEFINE-DEFAULT variable-name value
 Defines the named variable to the given value if it does not already have a
@@ -126,13 +126,13 @@
 .TP 5
 TRANSFER chunked
 Specifies that tests will, by default, use the HTTP/1.1 "Transfer-Encoding:
-chunked" header. This is the default and is equivalent to specifying "-c" on the
+chunked" header. This is the default and is equivalent to specifying "\-c" on the
 \fIipptool\fR command-line. Support for chunked requests is required for
 conformance with all versions of IPP.
 .TP 5
 TRANSFER length
 Specifies that tests will, by default, use the HTTP/1.0 "Content-Length:"
-header. This is equivalent to specifying "-l" on the \fIipptool\fR command-line.
+header. This is equivalent to specifying "\-l" on the \fIipptool\fR command-line.
 Support for content length requests is required for conformance with all
 versions of IPP.
 .TP 5
@@ -152,7 +152,7 @@
 .TP 5
 ATTR tag attribute-name value(s)
 Adds an attribute to the test request. Values are separated by the comma (",")
-character - escape commas using the "\" character. Common attributes and values are listed in the IANA IPP registry - see references below.
+character \- escape commas using the "\\" character. Common attributes and values are listed in the IANA IPP registry \- see references below.
 .TP 5
 ATTR collection attribute-name { MEMBER tag member-name value(s) ... } [ ... { ... } ]
 Adds a collection attribute to the test request. Member attributes follow the
@@ -181,7 +181,7 @@
 .TP 5
 EXPECT !attribute-name
 Specifies that the response must/may/must not include the named attribute.
-Additional requirements can be added as predicates - see the "EXPECT PREDICATES"
+Additional requirements can be added as predicates \- see the "EXPECT PREDICATES"
 section for more information on predicates.
 .TP 5
 FILE filename
@@ -227,7 +227,7 @@
 .TP 5
 STATUS status-code [ predicate ]
 Specifies an expected response status-code value. Additional requirements can be
-added as predicates - see the "STATUS PREDICATES" section for more information
+added as predicates \- see the "STATUS PREDICATES" section for more information
 on predicates.
 .TP 5
 TEST-ID "identifier"
@@ -567,7 +567,7 @@
 .SH VARIABLES
 The \fIipptool\fR program maintains a list of variables that can be used in any
 literal string or attribute value by specifying "$variable-name". Aside from
-variables defined using the "-d" option or "DEFINE" directive, the following
+variables defined using the "\-d" option or "DEFINE" directive, the following
 pre-defined variables are available:
 .TP 5
 $$
@@ -578,7 +578,7 @@
 environment variable is not defined.
 .TP 5
 $filename
-Inserts the filename provided to \fIipptool\fR with the "-f" option.
+Inserts the filename provided to \fIipptool\fR with the "\-f" option.
 .TP 5
 $hostname
 Inserts the hostname from the URI provided to \fIipptool\fR.
--- a/man/lp.man
+++ b/man/lp.man
@@ -14,49 +14,49 @@
 .\"
 .TH lp 1 "CUPS" "16 July 2012" "Apple Inc."
 .SH NAME
-lp - print files
+lp \- print files
 .SH SYNOPSIS
 .B lp
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -c ] [ -d
+] [ \-c ] [ \-d
 .I destination[/instance]
-] [ -h
+] [ \-h
 .I hostname[:port]
-] [ -m ] [ -n
+] [ \-m ] [ \-n
 .I num-copies
-] [ -o
+] [ \-o
 .I option[=value]
-] [ -q
+] [ \-q
 .I priority
-] [ -s ] [ -t
+] [ \-s ] [ \-t
 .I title
-] [ -H
+] [ \-H
 .I handling
-] [ -P
+] [ \-P
 .I page-list
-] [ -- ] [
+] [ \-- ] [
 .I file(s)
 ]
 .br
 .B lp
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -c ] [ -h
+] [ \-c ] [ \-h
 .I hostname[:port]
-] [ -i
+] [ \-i
 .I job-id
-] [ -n
+] [ \-n
 .I num-copies
-] [ -o
+] [ \-o
 .I option[=value]
-] [ -q
+] [ \-q
 .I priority
-] [ -t
+] [ \-t
 .I title
-] [ -H
+] [ \-H
 .I handling
-] [ -P
+] [ \-P
 .I page-list
 ]
 .SH DESCRIPTION
@@ -70,20 +70,20 @@
 .SH OPTIONS
 The following options are recognized by \fIlp\fR:
 .TP 5
---
+\--
 .br
 Marks the end of options; use this to print a file whose name
 begins with a dash (-).
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--U username
+\-U username
 .br
 Specifies the username to use when connecting to the server.
 .TP 5
--c
+\-c
 .br
 This option is provided for backwards-compatibility only. On
 systems that support it, this option forces the print file to be
@@ -91,52 +91,52 @@
 files are always sent to the scheduler via IPP which has the
 same effect.
 .TP 5
--d destination
+\-d destination
 .br
 Prints files to the named printer.
 .TP 5
--h hostname[:port]
+\-h hostname[:port]
 .br
 Chooses an alternate server.
 .TP 5
--i job-id
+\-i job-id
 .br
 Specifies an existing job to modify.
 .TP 5
--m
+\-m
 .br
 Sends an email when the job is completed.
 .TP 5
--n copies
+\-n copies
 .br
 Sets the number of copies to print from 1 to 100.
 .TP 5
--o "name=value [name=value ...]"
+\-o "name=value [name=value ...]"
 .br
 Sets one or more job options.
 .TP 5
--q priority
+\-q priority
 .br
 Sets the job priority from 1 (lowest) to 100 (highest). The
 default priority is 50.
 .TP 5
--s
+\-s
 .br
 Do not report the resulting job IDs (silent mode.)
 .TP 5
--t "name"
+\-t "name"
 .br
 Sets the job name.
 .TP 5
--H hh:mm
+\-H hh:mm
 .TP 5
--H hold
+\-H hold
 .TP 5
--H immediate
+\-H immediate
 .TP 5
--H restart
+\-H restart
 .TP 5
--H resume
+\-H resume
 .br
 Specifies when the job should be printed. A value of \fIimmediate\fR will print
 the file immediately, a value of \fIhold\fR will hold the job indefinitely, and
@@ -145,91 +145,91 @@
 Use a value of \fIrestart\fR with the \fI-i\fR option to restart
 a completed job.
 .TP 5
--P page-list
+\-P page-list
 .br
 Specifies which pages to print in the document. The list can
 contain a list of numbers and ranges (#-#) separated by commas
 (e.g. 1,3-5,16). The page numbers refer to the output pages and
-not the document's original pages - options like "number-up" can
+not the document's original pages \- options like "number-up" can
 affect the numbering of the pages.
 .SH COMMON JOB OPTIONS
 Aside from the printer-specific options reported by the
 \fIlpoptions(1)\fR command, the following generic options are
 available:
 .TP 5
--o media=size
+\-o media=size
 .br
 Sets the page size to \fIsize\fR. Most printers support at least
 the size names "a4", "letter", and "legal".
 .TP 5
--o landscape
+\-o landscape
 .TP 5
--o orientation-requested=4
+\-o orientation-requested=4
 .br
 Prints the job in landscape (rotated 90 degrees).
 .TP 5
--o sides=one-sided
+\-o sides=one-sided
 .TP 5
--o sides=two-sided-long-edge
+\-o sides=two-sided-long-edge
 .TP 5
--o sides=two-sided-short-edge
+\-o sides=two-sided-short-edge
 .br
 Prints on one or two sides of the paper. The value
 "two-sided-long-edge" is normally used when printing portrait
 (unrotated) pages, while "two-sided-short-edge" is used for
 landscape pages.
 .TP 5
--o fit-to-page
+\-o fit-to-page
 .br
 Scales the print file to fit on the page.
 .TP 5
--o number-up=2
+\-o number-up=2
 .TP 5
--o number-up=4
+\-o number-up=4
 .TP 5
--o number-up=6
+\-o number-up=6
 .TP 5
--o number-up=9
+\-o number-up=9
 .TP 5
--o number-up=16
+\-o number-up=16
 .br
 Prints multiple document pages on each output page.
 .TP 5
--o cpi=N
+\-o cpi=N
 .br
 Sets the number of characters per inch to use when printing a
 text file. The default is 10.
 .TP 5
--o lpi=N
+\-o lpi=N
 .br
 Sets the number of lines per inch to use when printing a text
 file. The default is 6.
 .TP 5
--o page-bottom=N
+\-o page-bottom=N
 .TP 5
--o page-left=N
+\-o page-left=N
 .TP 5
--o page-right=N
+\-o page-right=N
 .TP 5
--o page-top=N
+\-o page-top=N
 .br
 Sets the page margins when printing text files. The values are in
-points - there are 72 points to the inch.
+points \- there are 72 points to the inch.
 .SH EXAMPLES
 Print a double-sided legal document to a printer called "foo":
 .nf
-    lp -d foo -o media=legal -o sides=two-sided-long-edge filename
+    lp \-d foo \-o media=legal \-o sides=two-sided-long-edge filename
 .fi
 .LP
 Print an image across 4 pages:
 .nf
-    lp -d bar -o scaling=200 filename
+    lp \-d bar \-o scaling=200 filename
 .fi
 .LP
 Print a text file with 12 characters per inch, 8 lines per inch, and
 a 1 inch left margin:
 .nf
-    lp -d bar -o cpi=12 -o lpi=8 -o page-left=72 filename
+    lp \-d bar \-o cpi=12 \-o lpi=8 \-o page-left=72 filename
 .fi
 .SH COMPATIBILITY
 Unlike the System V printing system, CUPS allows printer names to
--- a/man/lpadmin.man
+++ b/man/lpadmin.man
@@ -17,31 +17,31 @@
 lpadmin \- configure cups printers and classes
 .SH SYNOPSIS
 .B lpadmin
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] -d
+] \-d
 .I destination
 .br
 .B lpadmin
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] -p
+] \-p
 .I destination
-[ -R
+[ \-R
 .I name-default
 ]
 .I option(s)
 .br
 .B lpadmin
-[ -E ] [-U
+[ \-E ] [\-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] -x
+] \-x
 .I destination
 .SH DESCRIPTION
 \fIlpadmin\fR configures printer and class queues provided by
@@ -69,75 +69,75 @@
 The following options are recognized when configuring a printer
 queue:
 .TP 5
--c class
+\-c class
 .br
 Adds the named \fIprinter\fR to \fIclass\fR.  If \fIclass\fR does
 not exist it is created automatically.
 .TP 5
--i interface
+\-i interface
 .br
 Sets a System V style interface script for the printer. This
 option cannot be specified with the \fI-P\fR option (PPD file)
 and is intended for providing support for legacy printer drivers.
 .TP 5
--m model
+\-m model
 .br
 Sets a standard System V interface script or PPD file for the printer from the
 \fImodel\fR directory or using one of the driver interfaces. Use the \fI-m\fR
 option with the \fIlpinfo(8)\fR command to get a list of supported models.
 .TP 5
--o cupsIPPSupplies=true
+\-o cupsIPPSupplies=true
 .TP 5
--o cupsIPPSupplies=false
+\-o cupsIPPSupplies=false
 .br
 Specifies whether IPP supply level values should be reported.
 .TP 5
--o cupsSNMPSupplies=true
+\-o cupsSNMPSupplies=true
 .TP 5
--o cupsSNMPSupplies=false
+\-o cupsSNMPSupplies=false
 .br
 Specifies whether SNMP supply level (RFC 3805) values should be reported.
 .TP 5
--o job-k-limit=value
+\-o job-k-limit=value
 .br
 Sets the kilobyte limit for per-user quotas. The value is an
 integer number of kilobytes; one kilobyte is 1024 bytes.
 .TP 5
--o job-page-limit=value
+\-o job-page-limit=value
 .br
 Sets the page limit for per-user quotas. The value is the integer
 number of pages that can be printed; double-sided pages are
 counted as two pages.
 .TP 5
--o job-quota-period=value
+\-o job-quota-period=value
 .br
 Sets the accounting period for per-user quotas. The value is an
 integer number of seconds; 86,400 seconds are in one day.
 .TP 5
--o job-sheets-default=banner
+\-o job-sheets-default=banner
 .TP 5
--o job-sheets-default=banner,banner
+\-o job-sheets-default=banner,banner
 .br
 Sets the default banner page(s) to use for print jobs.
 .TP 5
--o name=value
+\-o name=value
 .br
 Sets a PPD option for the printer. PPD options can be listed using the \fI-l\fR
 option with the \fIlpoptions(1)\fR command.
 .TP 5
--o name-default=value
+\-o name-default=value
 .br
 Sets a default server-side option for the destination. Any print-time
-option can be defaulted, e.g. "-o cpi-default=17" to set the default
+option can be defaulted, e.g. "\-o cpi-default=17" to set the default
 "cpi" option value to 17.
 .TP 5
--o port-monitor=name
+\-o port-monitor=name
 .br
 Sets the binary communications program to use when printing,
 "none", "bcp", or "tbcp". The default program is "none". The
 specified port monitor must be listed in the printer's PPD file.
 .TP 5
--o printer-error-policy=name
+\-o printer-error-policy=name
 .br
 Sets the error policy to be used when the printer backend is
 unable to send the job to the printer. The name must be one of
@@ -145,7 +145,7 @@
 error policy is "stop-printer" for printers and "retry-current-job" for
 classes.
 .TP 5
--o printer-is-shared=true/false
+\-o printer-is-shared=true/false
 .br
 Sets the destination to shared/published or unshared/unpublished.
 Shared/published destinations are publicly announced by the server
@@ -153,53 +153,53 @@
 \fBcupsd.conf\fR, while unshared/unpublished destinations are not
 announced. The default value is "true".
 .TP 5
--o printer-op-policy=name
+\-o printer-op-policy=name
 .br
 Sets the IPP operation policy associated with the destination. The
 name must be defined in the \fBcupsd.conf\fR in a Policy section.
 The default operation policy is "default".
 .TP 5
--R name-default
+\-R name-default
 .br
 Deletes the named option from \fIprinter\fR.
 .TP 5
--r class
+\-r class
 .br
 Removes the named \fIprinter\fR from \fIclass\fR.  If the
 resulting class becomes empty it is removed.
 .TP 5
--u allow:user,user,@group
+\-u allow:user,user,@group
 .TP 5
--u deny:user,user,@group
+\-u deny:user,user,@group
 .TP 5
--u allow:all
+\-u allow:all
 .TP 5
--u deny:none
+\-u deny:none
 .br
 Sets user-level access control on a destination. Names starting with
 "@" are interpreted as UNIX groups. The latter two forms turn
 user-level access control off.
 .TP 5
--v "device-uri"
+\-v "device-uri"
 .br
 Sets the \fIdevice-uri\fR attribute of the printer queue. Use the \fI-v\fR
 option with the \fIlpinfo(8)\fR command to get a list of supported device URIs
 and schemes.
 .TP 5
--D "info"
+\-D "info"
 .br
 Provides a textual description of the destination.
 .TP 5
--E
+\-E
 .br
 Enables the destination and accepts jobs; this is the same as running the
 \fIcupsaccept(8)\fR and \fIcupsenable(8)\fR programs on the destination.
 .TP 5
--L "location"
+\-L "location"
 .br
 Provides a textual location of the destination.
 .TP 5
--P ppd-file
+\-P ppd-file
 .br
 Specifies a PostScript Printer Description file to use with the
 printer. If specified, this option overrides the \fI-i\fR option
--- a/man/lpinfo.man
+++ b/man/lpinfo.man
@@ -17,36 +17,36 @@
 lpinfo \- show available devices or drivers
 .SH SYNOPSIS
 .B lpinfo
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -l ] [ --device-id
+] [ \-l ] [ \--device-id
 .I device-id-string
-] [ --exclude-schemes
+] [ \--exclude-schemes
 .I scheme-list
-] [ --include-schemes
+] [ \--include-schemes
 .I scheme-list
-] [ --language
+] [ \--language
 .I locale
-] [ --make-and-model
+] [ \--make-and-model
 .I name
-] [ --product
+] [ \--product
 .I name
-] -m
+] \-m
 .br
 .B lpinfo
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -l ] [ --exclude-schemes
+] [ \-l ] [ \--exclude-schemes
 .I scheme-list
-] [ --include-schemes
+] [ \--include-schemes
 .I scheme-list
-] [ --timeout
+] [ \--timeout
 .I seconds
-] -v
+] \-v
 .SH DESCRIPTION
 \fIlpinfo\fR lists the available devices or drivers known to the
 CUPS server. The first form (\fI-m\fR) lists the available
@@ -55,51 +55,51 @@
 .SH OPTIONS
 \fIlpinfo\fR accepts the following options:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--U username
+\-U username
 .br
 Sets the username to use when connecting to the server.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Selects an alternate server.
 .TP 5
--l
+\-l
 .br
 Shows a "long" listing of devices or drivers.
 .TP 5
---device-id device-id-string
+\--device-id device-id-string
 .br
 Specifies the IEEE-1284 device ID to match when listing drivers with the
 \fI-m\fR option.
 .TP 5
---exclude-schemes scheme-list
+\--exclude-schemes scheme-list
 .br
 Specifies a comma-separated list of device or PPD schemes that should be
 excluded from the results. Static PPD files use the "file" scheme.
 .TP 5
---include-schemes scheme-list
+\--include-schemes scheme-list
 .br
 Specifies a comma-separated list of device or PPD schemes that should be
 included in the results. Static PPD files use the "file" scheme.
 .TP 5
---language locale
+\--language locale
 .br
 Specifies the language to match when listing drivers with the \fI-m\fR option.
 .TP 5
---make-and-model name
+\--make-and-model name
 .br
 Specifies the make and model to match when listing drivers with the \fI-m\fR
 option.
 .TP 5
---product name
+\--product name
 .br
 Specifies the product to match when listing drivers with the \fI-m\fR option.
 .TP 5
---timeout seconds
+\--timeout seconds
 .br
 Specifies the timeout when listing devices with the \fI-v\fR option.
 .SH COMPATIBILITY
--- a/man/lpmove.man
+++ b/man/lpmove.man
@@ -17,17 +17,17 @@
 lpmove \- move a job or all jobs to a new destination
 .SH SYNOPSIS
 .B lpmove
-[ -E ] [ -h
+[ \-E ] [ \-h
 .I server[:port]
-] [ -U
+] [ \-U
 .I username
 ]
 .I job destination
 .br
 .B lpmove
-[ -E ] [ -h
+[ \-E ] [ \-h
 .I server[:port]
-] [ -U
+] [ \-U
 .I username
 ]
 .I source destination
@@ -44,15 +44,15 @@
 .SH OPTIONS
 The \fIlpmove\fR command supports the following options:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--U username
+\-U username
 .br
 Specifies an alternate username.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Specifies an alternate server.
 .SH SEE ALSO
--- a/man/lpoptions.man.in
+++ b/man/lpoptions.man.in
@@ -17,90 +17,90 @@
 lpoptions \- display or set printer options and defaults
 .SH SYNOPSIS
 .B lpoptions
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] -d
+] \-d
 .I destination[/instance]
-[ -o
+[ \-o
 .I option[=value]
-] ... [ -o
+] ... [ \-o
 .I option[=value]
 ]
 .br
 .B lpoptions
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -p
+] [ \-p
 .I destination[/instance]
-] -l
+] \-l
 .br
 .B lpoptions
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -o
+] [ \-o
 .I option[=value]
-] ... [ -o
+] ... [ \-o
 .I option[=value]
-] [ -p
+] [ \-p
 .I destination[/instance]
-] -r
+] \-r
 .I option
 .br
 .B lpoptions
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] -x
+] \-x
 .I destination[/instance]
 .SH DESCRIPTION
 \fIlpoptions\fR displays or sets printer options and defaults.
 \fIlpoptions\fR shows the default printer options when run with no
 arguments. Other options include:
 .TP 5
--E
+\-E
 .br
 Enables encryption when communicating with the CUPS server.
 .TP 5
--U username
+\-U username
 .br
 Uses an alternate username.
 .TP 5
--d destination[/instance]
+\-d destination[/instance]
 .br
 Sets the user default printer to \fIdestination\fR. If \fIinstance\fR
 is supplied then that particular instance is used. This option
 overrides the system default printer for the current user.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Uses an alternate server.
 .TP 5
--l
+\-l
 .br
 Lists the printer specific options and their current settings.
 .TP 5
--o option[=value]
+\-o option[=value]
 .br
 Specifies a new option for the named destination.
 .TP 5
--p destination[/instance]
+\-p destination[/instance]
 .br
 Sets the destination and instance, if specified, for any options
 that follow. If the named instance does not exist then it is
 created.
 .TP 5
--r option
+\-r option
 .br
 Removes the specified option for the named destination.
 .TP 5
--x destination[/instance]
+\-x destination[/instance]
 .br
 Removes the options for the named destination and instance, if
 specified. If the named instance does not exist then this does
@@ -119,10 +119,10 @@
 .SH COMPATIBILITY
 The \fIlpoptions\fR command is unique to CUPS.
 .SH FILES
-~/.cups/lpoptions - user defaults and instances created by non-root
+~/.cups/lpoptions \- user defaults and instances created by non-root
 users.
 .br
-/etc/cups/lpoptions - system-wide defaults and instances
+/etc/cups/lpoptions \- system-wide defaults and instances
 created by the root user.
 .SH SEE ALSO
 \fIcancel(1)\fR, \fIlp(1)\fR, \fIlpadmin(8)\fR, \fIlpr(1)\fR,
--- a/man/lppasswd.man
+++ b/man/lppasswd.man
@@ -22,13 +22,13 @@
 ]
 .br
 .B lppasswd
--a [ -g
+\-a [ \-g
 .I groupname
 ]
 .I username
 .br
 .B lppasswd
--x
+\-x
 .I username
 .SH DESCRIPTION
 \fIlppasswd\fR adds, changes, or deletes passwords in the CUPS
@@ -41,7 +41,7 @@
 .SH OPTIONS
 \fIlppasswd\fR supports the following options:
 .TP 5
--g groupname
+\-g groupname
 .br
 Specifies a group other than the default system group.
 .SH SECURITY ISSUES
--- a/man/lpr.man
+++ b/man/lpr.man
@@ -17,17 +17,17 @@
 lpr \- print files
 .SH SYNOPSIS
 .B lpr
-[ -E ] [ -H
+[ \-E ] [ \-H
 .I server[:port]
-] [ -U
+] [ \-U
 .I username
-] [ -P
+] [ \-P
 .I destination[/instance]
-] [ -#
+] [ \-#
 .I num-copies
-[ -h ] [ -l ] [ -m ] [ -o
+[ \-h ] [ \-l ] [ \-m ] [ \-o
 .I option[=value]
-] [ -p] [ -q ] [ -r ] [ -C/J/T
+] [ \-p] [ \-q ] [ \-r ] [ \-C/J/T
 .I title
 ] [
 .I file(s)
@@ -45,65 +45,65 @@
 .SH OPTIONS
 The following options are recognized by \fIlpr\fR:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--H server[:port]
+\-H server[:port]
 .br
 Specifies an alternate server.
 .TP 5
--C "name"
+\-C "name"
 .TP 5
--J "name"
+\-J "name"
 .TP 5
--T "name"
+\-T "name"
 .br
 Sets the job name.
 .TP 5
--P destination[/instance]
+\-P destination[/instance]
 .br
 Prints files to the named printer.
 .TP 5
--U username
+\-U username
 .br
 Specifies an alternate username.
 .TP 5
--# \fIcopies\fR
+\-# \fIcopies\fR
 .br
 Sets the number of copies to print from 1 to 100.
 .TP 5
--h
+\-h
 .br
-Disables banner printing. This option is equivalent to "-o
+Disables banner printing. This option is equivalent to "\-o
 job-sheets=none".
 .TP 5
--l
+\-l
 .br
 Specifies that the print file is already formatted for the
 destination and should be sent without filtering. This option is
-equivalent to "-o raw".
+equivalent to "\-o raw".
 .TP 5
--m
+\-m
 .br
 Send an email on job completion.
 .TP 5
--o option[=value]
+\-o option[=value]
 .br
 Sets a job option.
 .TP 5
--p
+\-p
 .br
 Specifies that the print file should be formatted with a shaded
 header with the date, time, job name, and page number. This
-option is equivalent to "-o prettyprint" and is only useful when
+option is equivalent to "\-o prettyprint" and is only useful when
 printing text files.
 .TP 5
--q
+\-q
 .br
 Hold job for printing.
 .TP 5
--r
+\-r
 .br
 Specifies that the named print files should be deleted after
 printing them.
--- a/man/lprm.man
+++ b/man/lprm.man
@@ -17,13 +17,13 @@
 lprm \- cancel print jobs
 .SH SYNOPSIS
 .B lprm
-[ -E ] [ -U
+[ \-E ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I server[:port]
-] [ -P
+] [ \-P
 .I destination[/instance]
-] [ - ] [
+] [ \- ] [
 .I job ID(s)
 ]
 .SH DESCRIPTION
@@ -35,19 +35,19 @@
 .SH OPTIONS
 The \fIlprm\fR command supports the following options:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--P destination[/instance]
+\-P destination[/instance]
 .br
 Specifies the destination printer or class.
 .TP 5
--U username
+\-U username
 .br
 Specifies an alternate username.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Specifies an alternate server.
 .SH COMPATIBILITY
--- a/man/lpstat.man
+++ b/man/lpstat.man
@@ -17,23 +17,23 @@
 lpstat \- print cups status information
 .SH SYNOPSIS
 .B lpstat
-[ -E ] [ -H ] [ -U
+[ \-E ] [ \-H ] [ \-U
 .I username
-] [ -h
+] [ \-h
 .I hostname[:port]
-] [ -l ] [ -W
+] [ \-l ] [ \-W
 .I which-jobs
-] [ -a [
+] [ \-a [
 .I destination(s)
-] ] [ -c [
+] ] [ \-c [
 .I class(es)
-] ] [ -d ] [ -o [
+] ] [ \-d ] [ \-o [
 .I destination(s)
-] ] [ -p [
+] ] [ \-p [
 .I printer(s)
-] ] [ -r ] [ -R ] [ -s ] [ -t ] [ -u [
+] ] [ \-r ] [ \-R ] [ \-s ] [ \-t ] [ \-u [
 .I user(s)
-] ] [ -v [
+] ] [ \-v [
 .I printer(s)
 ] ]
 .SH DESCRIPTION
@@ -43,23 +43,23 @@
 .SH OPTIONS
 The \fIlpstat\fR command supports the following options:
 .TP 5
--E
+\-E
 .br
 Forces encryption when connecting to the server.
 .TP 5
--H
+\-H
 .br
 Shows the server hostname and port.
 .TP 5
--R
+\-R
 .br
 Shows the ranking of print jobs.
 .TP 5
--U username
+\-U username
 .br
 Specifies an alternate username.
 .TP 5
--W which-jobs
+\-W which-jobs
 .br
 Specifies which jobs to show, \fIcompleted\fR or
 \fInot-completed\fR (the default). This option \fImust\fR appear
@@ -67,60 +67,60 @@
 the default (not-completed) value will be used in the request to
 the scheduler.
 .TP 5
--a [printer(s)]
+\-a [printer(s)]
 .br
 Shows the accepting state of printer queues. If no printers are
 specified then all printers are listed.
 .TP 5
--c [class(es)]
+\-c [class(es)]
 .br
 Shows the printer classes and the printers that belong to them.
 If no classes are specified then all classes are listed.
 .TP 5
--d
+\-d
 .br
 Shows the current default destination.
 .TP 5
--h server[:port]
+\-h server[:port]
 .br
 Specifies an alternate server.
 .TP 5
--l
+\-l
 .br
 Shows a long listing of printers, classes, or jobs.
 .TP 5
--o [destination(s)]
+\-o [destination(s)]
 .br
 Shows the jobs queue on the specified destinations. If no destinations are
 specified all jobs are shown.
 .TP 5
--p [printer(s)]
+\-p [printer(s)]
 .br
 Shows the printers and whether or not they are enabled for printing. If
 no printers are specified then all printers are listed.
 .TP 5
--r
+\-r
 .br
 Shows whether the CUPS server is running.
 .TP 5
--s
+\-s
 .br
 Shows a status summary, including the default destination, a
 list of classes and their member printers, and a list of printers and
-their associated devices. This is equivalent to using the "-d", "-c",
-and "-v" options.
+their associated devices. This is equivalent to using the "\-d", "\-c",
+and "\-v" options.
 .TP 5
--t
+\-t
 .br
-Shows all status information. This is equivalent to using the "-r",
-"-d", "-c", "-v", "-a", "-p", and "-o" options.
+Shows all status information. This is equivalent to using the "\-r",
+"\-d", "\-c", "\-v", "\-a", "\-p", and "\-o" options.
 .TP 5
--u [user(s)]
+\-u [user(s)]
 .br
 Shows a list of print jobs queued by the specified users. If no users
 are specified, lists the jobs queued by the current user.
 .TP 5
--v [printer(s)]
+\-v [printer(s)]
 .br
 Shows the printers and what device they are attached to. If no printers
 are specified then all printers are listed.
@@ -129,9 +129,9 @@
 contain any printable character except SPACE, TAB, "/", and "#".
 Also, printer and class names are \fInot\fR case-sensitive.
 .LP
-The "-h", "-E", "-U", and "-W" options are unique to CUPS.
+The "\-h", "\-E", "\-U", and "\-W" options are unique to CUPS.
 .LP
-The Solaris "-f", "-P", and "-S" options are silently ignored.
+The Solaris "\-f", "\-P", and "\-S" options are silently ignored.
 .SH SEE ALSO
 \fIcancel(1)\fR, \fIlp(1)\fR,
 .br
--- a/man/mime.types.man
+++ b/man/mime.types.man
@@ -40,7 +40,7 @@
 logical AND and "," or whitespace for a logical OR, and negated using
 "!".
 .SH RULES
-Rules take two forms - a filename extension by itself and functions with test
+Rules take two forms \- a filename extension by itself and functions with test
 values inside parenthesis. The following functions are available:
 .TP 5
 match("pattern")
--- a/man/ppdc.man
+++ b/man/ppdc.man
@@ -17,17 +17,17 @@
 ppdc \- cups ppd compiler
 .SH SYNOPSIS
 .B ppdc
-[ -D
+[ \-D
 .I name[=value]
-] [ -I
+] [ \-I
 .I include-directory
-] [ -c
+] [ \-c
 .I message-catalog
-] [ -d
+] [ \-d
 .I output-directory
-] [ -l
+] [ \-l
 .I language(s)
-] [-m] [-t] [ -v ] [ -z ] [ --cr ] [ --crlf ] [ --lf ]
+] [\-m] [\-t] [ \-v ] [ \-z ] [ \-\-cr ] [ \-\-crlf ] [ \-\-lf ]
 .I source-file
 .SH DESCRIPTION
 \fIppdc\fR compiles PPDC source files into one or more PPD
@@ -68,7 +68,7 @@
 The default is to generate uncompressed PPD files.
 .PP
 The \fI--cr\fR, \fI--crlf\fR, and \fI--lf\fR options specify the
-line ending to use - carriage return, carriage return and line feed,
+line ending to use \- carriage return, carriage return and line feed,
 or line feed. The default is to use the line feed character alone.
 .SH SEE ALSO
 ppdhtml(1), ppdi(1), ppdmerge(1), ppdpo(1), ppdcfile(5)
--- a/man/ppdhtml.man
+++ b/man/ppdhtml.man
@@ -17,9 +17,9 @@
 ppdhtml \- cups html summary generator
 .SH SYNOPSIS
 .B ppdhtml
-[ -D
+[ \-D
 .I name[=value]
-] [ -I
+] [ \-I
 .I include-directory
 ]
 .I source-file
--- a/man/ppdpo.man
+++ b/man/ppdpo.man
@@ -17,11 +17,11 @@
 ppdpo \- ppd message catalog generator
 .SH SYNOPSIS
 .B ppdpo
-[ -D
+[ \-D
 .I name[=value]
-] [ -I
+] [ \-I
 .I include-directory
-] [ -o
+] [ \-o
 .I output-file
 ]
 .I source-file
--- a/man/ippfind.man
+++ b/man/ippfind.man
@@ -13,7 +13,7 @@
 .\"
 .TH ippfind 1 "CUPS" "6 June 2013" "Apple Inc."
 .SH NAME
-ippfind - find internet printing protocol printers
+ippfind \- find internet printing protocol printers
 .SH SYNOPSIS
 .B ippfind
 [
@@ -28,38 +28,38 @@
 .I expression ...
 ]
 .B ippfind
---help
+\--help
 .B ippfind
---version
+\--version
 .SH OPTIONS
 .TP 5
---help
+\--help
 Show program help
 .TP 5
---version
+\--version
 Show program version
 .TP 5
--4
+\-4
 Use IPv4 when listing
 .TP 5
--6
+\-6
 Use IPv6 when listing
 .TP 5
--T seconds
+\-T seconds
 Specify find timeout in seconds. If 1 or less, \fIippfind\fR stops as soon as it thinks it has found everything. The default is 1 second.
 .TP 5
--V version
+\-V version
 Specifies the IPP version when listing. Supported values are 1.1, 2.0, 2.1, and 2.2.
 
 .SH DESCRIPTION
 \fIippfind\fR finds services registered with a DNS server or available through local devices. Its primary purpose is to find IPP printers and show their URIs, show their current status, or run commands. For example, to show the status of all registered IPP printers on your network, run:
 .nf
-    ippfind --ls
+    ippfind \--ls
 .fi
 Similarly, to send a PostScript test page to every PostScript printer, run:
 .nf
-    ippfind --txt-pdl application/postscript --exec ipptool \\
-        -f onepage-letter.ps '{}' print-job.test \\;
+    ippfind \--txt-pdl application/postscript \--exec ipptool \\
+        \-f onepage-letter.ps '{}' print-job.test \\;
 .fi
 
 .SH REGISTRATION TYPES
@@ -81,83 +81,83 @@
 Line Printer Daemon (LPD, RFC 1179)
 
 .SH EXPRESSIONS
-\fIippfind\fR supports expressions much like the \fIfind(1)\fR utility. However, unlike \fIfind\fR, \fIippfind\fR uses POSIX regular expressions instead of shell filename matching patterns. If --exec, -l, --ls, -p, --print, --print-name, -q, --quiet, -s, or -x is not specified, \fIippfind\fR adds --print to print the service URI of anything it finds. The following expressions are supported:
+\fIippfind\fR supports expressions much like the \fIfind(1)\fR utility. However, unlike \fIfind\fR, \fIippfind\fR uses POSIX regular expressions instead of shell filename matching patterns. If \--exec, \-l, \--ls, \-p, \--print, \--print-name, \-q, \--quiet, \-s, or \-x is not specified, \fIippfind\fR adds \--print to print the service URI of anything it finds. The following expressions are supported:
 .TP 5
--d regex
+\-d regex
 .TP 5
---domain regex
+\--domain regex
 True if the domain matches the given regular expression.
 .TP 5
---false
+\--false
 Always false.
 .TP 5
--h regex
+\-h regex
 .TP 5
---host regex
+\--host regex
 True is the hostname matches the given regular expression.
 .TP 5
--l
+\-l
 .TP 5
---ls
-Lists attributes returned by Get-Printer-Attributes for IPP printers and traditional \fIfind\fR "-ls" output for HTTP URLs. The result is true if the URI is accessible, false otherwise.
+\--ls
+Lists attributes returned by Get-Printer-Attributes for IPP printers and traditional \fIfind\fR "\-ls" output for HTTP URLs. The result is true if the URI is accessible, false otherwise.
 .TP 5
---local
+\--local
 True if the service is local to this computer.
 .TP 5
--n regex
+\-n regex
 .TP 5
---name regex
+\--name regex
 True if the service instance name matches the given regular expression.
 .TP 5
---path regex
+\--path regex
 True if the URI resource path matches the given regular expression.
 .TP 5
--P number[-number]
+\-P number[\-number]
 .TP 5
---port number[-number]
+\--port number[\-number]
 True if the port matches the given number or range.
 .TP 5
--p
+\-p
 .TP 5
---print
+\--print
 Prints the URI if the result of previous expressions is true. The result is always true.
 .TP 5
--q
+\-q
 .TP 5
---quiet
-Quiet mode - just returns the exit codes below.
+\--quiet
+Quiet mode \- just returns the exit codes below.
 .TP 5
--r
+\-r
 .TP 5
---remote
+\--remote
 True if the service is not local to this computer.
 .TP 5
--s
+\-s
 .TP 5
---print-name
+\--print-name
 Prints the service instance name if the result of previous expressions is true. The result is always true.
 .TP 5
---true
+\--true
 Always true.
 .TP 5
--t key
+\-t key
 .TP 5
---txt key
+\--txt key
 True if the TXT record contains the named key.
 .TP 5
---txt-\fIkey\fR regex
+\--txt-\fIkey\fR regex
 True if the TXT record contains the named key and matches the given regular
 expression.
 .TP 5
--u regex
+\-u regex
 .TP 5
---uri regex
+\--uri regex
 True if the URI matches the given regular expression.
 .TP 5
--x utility [argument ...] ;
+\-x utility [argument ...] ;
 .TP 5
---exec utility [argument ...] ;
-Executes the specified program if the current result is true. "{foo}" arguments are replaced with the corresponding value - see SUBSTITUTIONS below.
+\--exec utility [argument ...] ;
+Executes the specified program if the current result is true. "{foo}" arguments are replaced with the corresponding value \- see SUBSTITUTIONS below.
 .PP
 Expressions may also contain modifiers:
 .TP 5
@@ -166,19 +166,19 @@
 .TP 5
 ! expression
 .TP 5
---not expression
+\--not expression
 Unary NOT of the expression.
 .TP 5
 expression expression
 .TP 5
-expression --and expression
+expression \--and expression
 Logical AND of expressions.
 .TP 5
-expression --or expression
+expression \--or expression
 Logical OR of expressions.
 
 .SH SUBSTITUTIONS
-The substitutions for "{foo}" in -e and --exec are:
+The substitutions for "{foo}" in \-e and \--exec are:
 .TP 5
 {}
 URI