This file is indexed.

/usr/share/doc/emacspeak/DOC is in emacspeak 29.0-9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
DOC --- Automatically generated by command emacspeak-generate-documentation
$Id: emacspeak-wizards.el 6068 2008-11-21 20:44:05Z tv.raman.tv $
------------------------------------------------------------

** dtk-add-cleanup-pattern	Key Sequence: control e d a 

 Add this pattern to the list of repeating patterns that
are cleaned up.  Optional interactive prefix arg deletes
this pattern if previously added.  Cleaning up repeated
patterns results in emacspeak speaking the pattern followed
by a repeat count instead of speaking all the characters
making up the pattern.  Thus, by adding the repeating
pattern `.' (this is already added by default) emacspeak
will say ``aw fifteen dot'' when speaking the string
``...............'' instead of ``period period period period
'' 

------------------------------------------------------------

** dtk-pause	Key Sequence: control e p 

 Pause ongoing speech.
The speech can be resumed with command `dtk-resume'
normally bound to M-x dtk-resume.  Pausing speech is useful when one needs to
perform a few actions before continuing to read a large document.  Emacspeak
gives you speech feedback as usual once speech has been paused.  `dtk-resume'
continues the interrupted speech irrespective of the buffer
in which it is executed.
Optional PREFIX arg flushes any previously paused speech. 

------------------------------------------------------------

** dtk-reset-state	Key Sequence: control e d  cap R  

 Restore sanity to the Dectalk.
Typically used after the Dectalk has been power   cycled. 

------------------------------------------------------------

** dtk-resume Resume paused speech.
This command resumes  speech that has been suspended by executing
command `dtk-pause' bound to C-e p.
If speech has not been paused,
and option `dtk-resume-should-toggle' is set,
 then this command will pause ongoing speech. 

------------------------------------------------------------

** dtk-select-server	Key Sequence: control e d d 

 Select a speech server interactively.
Argument PROGRAM specifies the speech server program.
When called  interactively, The selected server is started immediately.  

------------------------------------------------------------

** dtk-set-character-scale	Key Sequence: control e d f 

 Set scale FACTOR for   speech rate.
Speech rate is scaled by this factor
when speaking characters.
Interactive PREFIX arg means set   the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** dtk-set-chunk-separator-syntax	Key Sequence: control e d RETURN 

 Interactively set how text is split in chunks.
See the Emacs documentation on syntax tables for details on how characters are
classified into various syntactic classes.
Argument S specifies the syntax class. 

------------------------------------------------------------

** dtk-set-language Set language according to the argument lang. 

------------------------------------------------------------

** dtk-set-next-language Switch to the next available language 

------------------------------------------------------------

** dtk-set-predefined-speech-rate	Key Sequence: control e d 9   control e d 8   control e d 7   control e d 6   control e d 5   control e d 4   control e d 3   control e d 2   control e d 1   control e d 0 

 Set speech rate to one of nine predefined levels.
Interactive PREFIX arg says to set the rate globally.
Formula used is:
rate = dtk-speech-rate-base + dtk-speech-rate-step * level. 

------------------------------------------------------------

** dtk-set-preferred-language Set the alias of the preferred language:
For example if alias="en" lang="en_GB",
then the following call:
 dtk-set-language("en")
will set "en_GB".
 

------------------------------------------------------------

** dtk-set-previous-language Switch to the previous available language 

------------------------------------------------------------

** dtk-set-punctuations	Key Sequence: control e d p 

 Set punctuation mode to MODE.
Possible values are `some', `all', or `none'.
Interactive PREFIX arg means set   the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** dtk-set-punctuations-to-all Set punctuation  mode to all.
Interactive PREFIX arg sets punctuation mode globally. 

------------------------------------------------------------

** dtk-set-punctuations-to-some Set punctuation  mode to some.
Interactive PREFIX arg sets punctuation mode globally. 

------------------------------------------------------------

** dtk-set-rate	Key Sequence: control e d r 

 Set speaking RATE for the tts.
Interactive PREFIX arg means set   the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** dtk-toggle-allcaps-beep	Key Sequence: control e d  cap C  

 Toggle allcaps-beep.
when set, allcaps words  are  indicated by a
short beep.  Interactive PREFIX arg means toggle the global default
value, and then set the current local value to the result.
Note that allcaps-beep is a very useful thing when programming.
However it is irritating to have it on when reading documents. 

------------------------------------------------------------

** dtk-toggle-capitalization	Key Sequence: control e d c 

 Toggle capitalization.
when set, capitalization is indicated by a
short beep.  Interactive PREFIX arg means toggle the global default
value, and then set the current local value to the result. 

------------------------------------------------------------

** dtk-toggle-debug	Key Sequence: control e d b 

 Toggle state of the debug FLAG.
When debugging is on, you can switch to the buffer
*speaker* to examine the output from the process
that talks to the speech device by using command C-e d C-M-b.
Note: *speaker* is a hidden buffer, ie it has a leading space in its name. 

------------------------------------------------------------

** dtk-toggle-punctuation-mode	Key Sequence: control e d , 

 Toggle punctuation mode between "some" and "all".
Interactive PREFIX arg makes the new setting global. 

------------------------------------------------------------

** dtk-toggle-quiet	Key Sequence: control e d q 

 Toggles state of  dtk-quiet.
Turning on this switch silences speech.
Optional interactive prefix arg causes this setting to become global. 

------------------------------------------------------------

** dtk-toggle-speak-nonprinting-chars	Key Sequence: control e d n 

 Toggle speak-nonprinting-chars.
Switches behavior of how characters with the high bit set are handled.
Interactive PREFIX arg means toggle the global default
value, and then set the current local value to the result. 

------------------------------------------------------------

** dtk-toggle-split-caps	Key Sequence: control e d s 

 Toggle split caps mode.
Split caps mode is useful when reading
Hungarian notation in program source code.  Interactive PREFIX arg
means toggle the global default value, and then set the current local
value to the result. 

------------------------------------------------------------

** dtk-toggle-splitting-on-white-space	Key Sequence: control e d SPACE 

 Toggle splitting of speech on white space.
This affects the internal state of emacspeak that decides if we split
text purely by clause boundaries, or also include
whitespace.  By default, emacspeak sends a clause at a time
to the speech device.  This produces fluent speech for
normal use.  However in modes such as `shell-mode' and some
programming language modes, clause markers appear
infrequently, and this can result in large amounts of text
being sent to the speech device at once, making the system
unresponsive when asked to stop talking.  Splitting on white
space makes emacspeak's stop command responsive.  However,
when splitting on white space, the speech sounds choppy
since the synthesizer is getting a word at a time. 

------------------------------------------------------------

** dtk-toggle-stop-immediately-while-typing	Key Sequence: control e d  cap I  

 Toggle state of variable `dtk-stop-immediately-while-typing'.
As the name implies, if T then speech flushes immediately as you
type.  Optional argument PREFIX specifies if the setting applies
to all buffers. 

------------------------------------------------------------

** dtk-toggle-strip-octals	Key Sequence: control e d o 

 Toggle stripping of octals.
Interactive prefix arg means
 toggle the global default value, and then set the current local
value to the result. 

------------------------------------------------------------

** dtk-unicode-customize-char Add a custom replacement string for CHAR.

When called interactively, CHAR defaults to the character after point. 

------------------------------------------------------------

** dtk-unicode-uncustomize-char Delete custom replacement for CHAR.

When called interactively, CHAR defaults to the character after point. 

------------------------------------------------------------

** emacspeak-alsaplayer-add-to-queue Add specified resource to queue. 

------------------------------------------------------------

** emacspeak-alsaplayer-backward-10-seconds Skip backward by  10 seconds. 

------------------------------------------------------------

** emacspeak-alsaplayer-backward-minute Skip backwards by  minutes. 

------------------------------------------------------------

** emacspeak-alsaplayer-backward-ten-minutes Skip backwards by  chunks of minutes. 

------------------------------------------------------------

** emacspeak-alsaplayer-cd Change default directory, and silence its pronounciation. 

------------------------------------------------------------

** emacspeak-alsaplayer-clear Clear or resume alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-clip Invoke mp3splt to clip selected range. 

------------------------------------------------------------

** emacspeak-alsaplayer-find-and-add-to-queue Find  specified resource and add to queue. 

------------------------------------------------------------

** emacspeak-alsaplayer-forward-10-seconds Skip forward by  seconds. 

------------------------------------------------------------

** emacspeak-alsaplayer-forward-minute Skip forward by  minutes. 

------------------------------------------------------------

** emacspeak-alsaplayer-forward-ten-minutes Skip forward by  chunks of ten minutes. 

------------------------------------------------------------

** emacspeak-alsaplayer-info Speak current path and copy it to kill ring. 

------------------------------------------------------------

** emacspeak-alsaplayer-jump Jump to specified track. 

------------------------------------------------------------

** emacspeak-alsaplayer-launch Launch Alsaplayer.
user is placed in a buffer associated with the newly created
Alsaplayer session. 

------------------------------------------------------------

** emacspeak-alsaplayer-mark-position Mark currently displayed position. 

------------------------------------------------------------

** emacspeak-alsaplayer-mode Major mode for alsaplayer interaction. 


key             binding
---             -------

SPC		emacspeak-alsaplayer-pause
,		emacspeak-alsaplayer-backward-10-seconds
.		emacspeak-alsaplayer-forward-10-seconds
/		emacspeak-alsaplayer-speed
<		emacspeak-alsaplayer-backward-minute
>		emacspeak-alsaplayer-forward-minute
?		emacspeak-alsaplayer-status
A		emacspeak-alsaplayer-replace-queue
S		emacspeak-alsaplayer-stop
[		emacspeak-alsaplayer-backward-ten-minutes
]		emacspeak-alsaplayer-forward-ten-minutes
a		emacspeak-alsaplayer-add-to-queue
c		emacspeak-alsaplayer-clear
d		emacspeak-alsaplayer-cd
f		emacspeak-alsaplayer-find-and-add-to-queue
g		emacspeak-alsaplayer-seek
i		emacspeak-alsaplayer-info
j		emacspeak-alsaplayer-jump
l		emacspeak-alsaplayer-launch
m		emacspeak-alsaplayer-mark-position
n		emacspeak-alsaplayer-next
o		other-window
p		emacspeak-alsaplayer-previous
q		emacspeak-alsaplayer-quit
r		emacspeak-alsaplayer-relative
s		emacspeak-alsaplayer-start
v		emacspeak-alsaplayer-volume
w		emacspeak-alsaplayer-where
x		emacspeak-alsaplayer-clip



This mode runs the hook `emacspeak-alsaplayer-mode-hook', as the final step
during initialization. 

------------------------------------------------------------

** emacspeak-alsaplayer-next Next  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-pause Pause or resume alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-previous Previous  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-quit Quit  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-relative Relative seek  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-replace-queue Replace currently playing music. 

------------------------------------------------------------

** emacspeak-alsaplayer-seek Absolute seek  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-speed Set speed in alsaplayer. 

------------------------------------------------------------

** emacspeak-alsaplayer-start Start  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-status Show alsaplayer status 

------------------------------------------------------------

** emacspeak-alsaplayer-stop Stop  alsaplayer 

------------------------------------------------------------

** emacspeak-alsaplayer-volume Set volume. 

------------------------------------------------------------

** emacspeak-alsaplayer-where Speak current position and copy it to kill ring. 

------------------------------------------------------------

** emacspeak-list-buffers-next-line Speech enabled buffer menu navigation 

------------------------------------------------------------

** emacspeak-list-buffers-previous-line Speech enabled buffer menu navigation 

------------------------------------------------------------

** emacspeak-list-buffers-speak-buffer-line Speak information about this buffer 

------------------------------------------------------------

** emacspeak-list-buffers-speak-buffer-name Speak the name of the buffer on this line 

------------------------------------------------------------

** emacspeak-custom-goto-group Jump to custom group when in a customization buffer. 

------------------------------------------------------------

** emacspeak-custom-goto-toolbar Jump to custom toolbar when in a customization buffer. 

------------------------------------------------------------

** emacspeak-dired-label-fields Labels the fields of the listing in the dired buffer.
Currently is a no-op  unless
unless `dired-listing-switches' contains -al 

------------------------------------------------------------

** emacspeak-dired-show-file-type Displays type of current file by running command file.
Like Emacs' built-in dired-show-file-type but allows user to customize
options passed to command `file'. 

------------------------------------------------------------

** emacspeak-dired-speak-file-access-time Speak access time  of the current file. 

------------------------------------------------------------

** emacspeak-dired-speak-file-modification-time Speak modification time  of the current file. 

------------------------------------------------------------

** emacspeak-dired-speak-file-permissions Speak the permissions of the current file. 

------------------------------------------------------------

** emacspeak-dired-speak-file-size Speak the size of the current file.
On a directory line, run du -s on the directory to speak its size. 

------------------------------------------------------------

** emacspeak-dired-speak-header-line Speak the header line of the dired buffer.  

------------------------------------------------------------

** emacspeak-dired-speak-symlink-target Speaks the target of the symlink on the current line. 

------------------------------------------------------------

** emacspeak-eterm-copy-region-to-register Copy text from terminal to an Emacs REGISTER.
This copies  region delimited by the emacspeak eterm marker 
set by command M-x emacspeak-eterm-set-marker and the 
emacspeak eterm pointer to a register.

This function is advised.

Before-advice `emacspeak-auto':
Automatically defined advice to speak interactive prompts.  

------------------------------------------------------------

** emacspeak-eterm-define-window Prompt for a window ID.
The window is then define to be
the rectangle delimited by point and eterm mark.  This is to
be used when emacspeak is set to review mode inside an
eterm. 

------------------------------------------------------------

** emacspeak-eterm-describe-window Describe an eterm  window.
Description indicates eterm window coordinates and whether it is stretchable 

------------------------------------------------------------

** emacspeak-eterm-goto-line Move emacspeak eterm pointer to a specified LINE. 

------------------------------------------------------------

** emacspeak-eterm-kill-ring-save-region Copy text from terminal to kill ring.
This copies  region delimited by the emacspeak eterm marker 
set by command M-x emacspeak-eterm-set-marker and the 
emacspeak eterm pointer. 

------------------------------------------------------------

** emacspeak-eterm-maybe-send-raw Send a raw character through if in the terminal buffer.
Execute end of line if
in a non eterm buffer if executed via C-e C-e 

------------------------------------------------------------

** emacspeak-eterm-paste-register Paste contents of REGISTER at current location.
If the specified register contains text, then that text is
sent to the terminal as if it were typed by the user.

This function is advised.

Before-advice `emacspeak-auto':
Automatically defined advice to speak interactive prompts.  

------------------------------------------------------------

** emacspeak-eterm-pointer-backward-word Move the pointer backward  by words. 
Interactive numeric prefix arg specifies number of words to move.
Argument COUNT specifies number of words by which to move. 

------------------------------------------------------------

** emacspeak-eterm-pointer-down Move the pointer down a line.
Argument COUNT specifies number of lines by which to move. 

------------------------------------------------------------

** emacspeak-eterm-pointer-forward-word Move the pointer forward by words. 
Interactive numeric prefix arg specifies number of words to move.
Argument COUNT specifies number of words by which to move. 

------------------------------------------------------------

** emacspeak-eterm-pointer-left Move the pointer left.
Argument COUNT specifies number of columns by which to move. 

------------------------------------------------------------

** emacspeak-eterm-pointer-right Move the pointer right.
Argument COUNT specifies number of columns by which to move. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-bottom Move the pointer to the bottom  of the screen. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-cursor Move the pointer to the cursor. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-left-edge Move the pointer to the right edge. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-next-color-change Move the eterm pointer to the next color change.
This allows you to move between highlighted regions of the screen.
Optional argument COUNT specifies how many changes to skip. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-previous-color-change Move the eterm pointer to the next color change.
This allows you to move between highlighted regions of the screen.
Optional argument COUNT specifies how many changes to skip. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-right-edge Move the pointer to the right edge. 

------------------------------------------------------------

** emacspeak-eterm-pointer-to-top Move the pointer to the top of the screen. 

------------------------------------------------------------

** emacspeak-eterm-pointer-up Move the pointer up a line.
Argument COUNT .specifies number of lines by which to move. 

------------------------------------------------------------

** emacspeak-eterm-remote-term	Key Sequence: control e CONTROL meta r 

 Start a terminal-emulator in a new buffer. 

------------------------------------------------------------

** emacspeak-eterm-search-backward Search backward on the terminal. 

------------------------------------------------------------

** emacspeak-eterm-search-forward Search forward on the terminal. 

------------------------------------------------------------

** emacspeak-eterm-set-filter-window Prompt for the id of a predefined window,
and set the `filter' window to it.
Non-nil interactive prefix arg `unsets' the filter window;
this is equivalent to having the entire terminal as the filter window (this is
what eterm starts up with).
Setting the filter window results in emacspeak  only monitoring screen
activity within the filter window. 

------------------------------------------------------------

** emacspeak-eterm-set-focus-window Prompt for the id of a predefined window,
and set the `focus' window to it.
Non-nil interactive prefix arg `unsets' the focus window;
this is equivalent to having the entire terminal as the focus window (this is
what eterm starts up with).
Setting the focus window results in emacspeak  monitoring screen
and speaking that window upon seeing screen activity. 

------------------------------------------------------------

** emacspeak-eterm-set-marker Set Emacspeak eterm marker.
This sets  the emacspeak eterm marker to the position pointed 
to by the emacspeak eterm pointer. 

------------------------------------------------------------

** emacspeak-eterm-speak-cursor Speak cursor position. 

------------------------------------------------------------

** emacspeak-eterm-speak-pointer Speak current pointer position. 

------------------------------------------------------------

** emacspeak-eterm-speak-pointer-char Speak char under eterm pointer.
Pronounces character phonetically unless  called with a PREFIX arg. 

------------------------------------------------------------

** emacspeak-eterm-speak-pointer-line Speak the line the pointer is on. 

------------------------------------------------------------

** emacspeak-eterm-speak-pointer-word Speak the word  the pointer is on. 

------------------------------------------------------------

** emacspeak-eterm-speak-predefined-window Speak a predefined eterm window between 1 and 10. 

------------------------------------------------------------

** emacspeak-eterm-speak-screen Speak the screen.  Default is to speak from the emacspeak pointer  to point.
Optional prefix arg FLAG causes region above
the Emacspeak pointer to be spoken. 

------------------------------------------------------------

** emacspeak-eterm-speak-window Speak an eterm window.
Argument ID specifies the window. 

------------------------------------------------------------

** emacspeak-eterm-toggle-filter-window Toggle active state of filter window. 

------------------------------------------------------------

** emacspeak-eterm-toggle-focus-window Toggle active state of focus window. 

------------------------------------------------------------

** emacspeak-eterm-toggle-pointer-mode Toggle emacspeak eterm pointer mode.
With optional interactive prefix  arg, turn it on.
When emacspeak eterm is in pointer mode, the eterm read pointer
stays where it is rather than automatically moving to the terminal cursor when
there is terminal activity. 

------------------------------------------------------------

** emacspeak-eterm-toggle-review Toggle state of eterm review. 
In review mode, you can move around the terminal and listen to the contnets 
without sending input to the terminal itself. 

------------------------------------------------------------

** emacspeak-eterm-yank-window Yank contents of  an eterm window at point. 

------------------------------------------------------------

** emacspeak-toggle-eterm-autospeak Toggle state of eterm autospeak.
When eterm autospeak is turned on and the terminal is in line mode,
all output to the terminal is automatically spoken. 
  Interactive prefix arg means toggle  the global default value, and then set the
  current local  value to the result.  

------------------------------------------------------------

** emacspeak-fix-all-recent-commands Fix recently loaded interactive commands.
This command looks through `load-history' and fixes commands if necessary.
Memoizes call in emacspeak-load-history-pointer to memoize this call.  

------------------------------------------------------------

** emacspeak-fix-commands-loaded-from Fix all commands loaded from a specified module. 

------------------------------------------------------------

** emacspeak-keymap-choose-new-emacspeak-prefix Interactively select a new prefix key to use for all emacspeak
commands.  The default is to use `C-e'  This command
lets you switch the prefix to something else.  This is a useful thing
to do if you run emacspeak on a remote machine from inside a terminal
that is running inside a local emacspeak session.  You can have the
remote emacspeak use a different control key to give your fingers some
relief. 

------------------------------------------------------------

** dtk-stop	Key Sequence: <pause>   control e s 

 Stop speech now. 

------------------------------------------------------------

** emacspeak-mark-forward-mark	Key Sequence: <control down> 

 Jump to mark, and pop a new position for mark off the ring
(does not affect global mark ring).

This function is advised.

After-advice `emacspeak':
Produce an auditory icon if possible. 

------------------------------------------------------------

** emacspeak-pronounce-yank-word Yank word at point into minibuffer. 

------------------------------------------------------------

** emacspeak-toggle-comint-output-monitor	Key Sequence: control e o 

 Toggle state of Emacspeak comint monitor.
When turned on, comint output is automatically spoken.  Turn this on if
you want your shell to speak its results.  Interactive
PREFIX arg means toggle the global default value, and then
set the current local value to the result. 

------------------------------------------------------------

** emacspeak-outline-speak-backward-heading	Key Sequence: control c b 

 Analogous to outline-backward-same-level
except that the outline section is optionally spoken 

------------------------------------------------------------

** emacspeak-outline-speak-forward-heading	Key Sequence: control c f 

 Analogous to outline-forward-same-level,
except that the outline section is optionally spoken 

------------------------------------------------------------

** emacspeak-outline-speak-next-heading	Key Sequence: control c n 

 Analogous to outline-next-visible-heading,
except that the outline section is optionally spoken 

------------------------------------------------------------

** emacspeak-outline-speak-previous-heading	Key Sequence: control c p 

 Analogous to outline-previous-visible-heading,
except that the outline section is optionally spoken 

------------------------------------------------------------

** emacspeak-outline-speak-this-heading	Key Sequence: control c SPACE 

 Speak current outline section starting from point 

------------------------------------------------------------

** emacspeak-pronounce-clear-dictionaries Clear all current pronunciation dictionaries. 

------------------------------------------------------------

** emacspeak-pronounce-define-local-pronunciation Define buffer local pronunciation.
Argument WORD specifies the word which should be pronounced as specified by PRONUNCIATION. 

------------------------------------------------------------

** emacspeak-pronounce-define-pronunciation Interactively define entries in the pronunciation dictionaries.
Default term to define is delimited by region.
First loads any persistent dictionaries if not already loaded. 

------------------------------------------------------------

** emacspeak-pronounce-define-template-pronunciation Interactively define template entries in the pronunciation dictionaries.
Default term to define is delimited by region.
First loads any persistent dictionaries if not already loaded. 

------------------------------------------------------------

** emacspeak-pronounce-dispatch	Key Sequence: control e meta d 

 Provides the user interface front-end to Emacspeak's pronunciation dictionaries. 

------------------------------------------------------------

** emacspeak-pronounce-edit-pronunciations Prompt for and launch a pronunciation editor on the
specified pronunciation dictionary key. 

------------------------------------------------------------

** emacspeak-pronounce-load-dictionaries Load pronunciation dictionaries.
Optional argument FILENAME specifies the dictionary file. 

------------------------------------------------------------

** emacspeak-pronounce-refresh-pronunciations Refresh pronunciation table for current buffer.
Activates pronunciation dictionaries if not already active. 

------------------------------------------------------------

** emacspeak-pronounce-save-dictionaries Writes out the persistent emacspeak pronunciation dictionaries. 

------------------------------------------------------------

** emacspeak-pronounce-toggle-use-of-dictionaries Toggle use of pronunciation dictionaries in current buffer.
Pronunciations can be defined on a per file, per directory and/or per
mode basis.
Pronunciations are activated on a per buffer basis.
Turning on the use of pronunciation dictionaries results in emacspeak
composing a pronunciation table based on the currently defined
pronunciation dictionaries.
After this, the pronunciations will be applied whenever text in the
buffer is spoken.
Optional argument state can be used from Lisp programs to
explicitly turn pronunciations on or off. 

------------------------------------------------------------

** emacspeak-backward-char	Key Sequence: control b   <left> 

 Backward-char redefined to speak char moved to.  

------------------------------------------------------------

** emacspeak-forward-char	Key Sequence: control f   <right> 

 Forward-char redefined to speak char moved to.  

------------------------------------------------------------

** emacspeak-self-insert-command	Key Sequence: Generic char 491520: all of JISX0213-2   Generic char 458752: all of Tibetan 2-col   Generic char 442368: all of Indian 2-col   Generic char 425984: all of CNS11643-7   Generic char 409600: all of CNS11643-6   Generic char 393216: all of CNS11643-5   Generic char 376832: all of CNS11643-4   Generic char 360448: all of CNS11643-3   Generic char 344064: all of Ethiopic   Generic char 327680: all of Unicode subset   Generic char 311296: all of Unicode subset 3   Generic char 294912: all of Unicode subset 2   Generic char 278528: all of Tibetan 1-col   Generic char 262144: all of Indian glyph   Generic char 14464: all of IS 13194   Generic char 14336: all of Arabic 2-col   Generic char 7040: all of Lao   Generic char 6912: all of rev ASCII   Generic char 6784: all of Arabic 1-col   Generic char 6656: all of Arabic digit   Generic char 6528: all of VISCII upper   Generic char 6400: all of VISCII lower   Generic char 6272: all of IPA   Generic char 6144: all of SiSheng   Generic char 163840: all of Big5 (Level-2)   Generic char 147456: all of Big5 (Level-1)   Generic char 131072: all of JISX0213-1   Generic char 114688: all of CNS11643-2   Generic char 98304: all of CNS11643-1   Generic char 81920: all of JISX0212   Generic char 65536: all of KSC5601   Generic char 49152: all of JISX0208   Generic char 32768: all of GB2312   Generic char 16384: all of JISX0208.1978   Generic char 3968: all of RHP of Latin-8   Generic char 3840: all of RHP of Latin-9   Generic char 3712: all of RHP of Latin-5   Generic char 3584: all of RHP of ISO8859/5   Generic char 3328: all of JISX0201 Roman   Generic char 3200: all of JISX0201 Katakana   Generic char 3072: all of RHP of ISO8859/8   Generic char 2944: all of RHP of ISO8859/6   Generic char 2816: all of RHP of ISO8859/7   Generic char 2688: all of RHP of TIS620   Generic char 2560: all of RHP of Latin-4   Generic char 2432: all of RHP of Latin-3   Generic char 2304: all of RHP of Latin-2   Generic char 2176: all of RHP of Latin-1   ÿ   þ   ý   ü   û   ú   ù   ø   ÷   ö   õ   ô   ó   ò   ñ   ð   ï   î   í   ì   ë   ê   é   è   ç   æ   å   ä   ã   â   á   à   ß   Þ   Ý   Ü   Û   Ú   Ù   Ø   ×   Ö   Õ   Ô   Ó   Ò   Ñ   Ð   Ï   Î   Í   Ì   Ë   Ê   É   È   Ç   Æ   Å   Ä   Ã   Â   Á   À   ¿   ¾   ½   ¼   »   º   ¹   ¸   ·   ¶   µ   ´   ³   ²   ±   °   ¯   ®   ­   ¬   «   ª   ©   ¨   §   ¦   ¥   ¤   £   ¢   ¡       ~   }   |   {   z   y   x   w   v   u   t   s   r   q   p   o   n   m   l   k   j   i   h   g   f   e   d   c   b   a   `   _   ^   ]   \   [    cap Z     cap Y     cap X     cap W     cap V     cap U     cap T     cap S     cap R     cap Q     cap P     cap O     cap N     cap M     cap L     cap K     cap J     cap I     cap H     cap G     cap F     cap E     cap D     cap C     cap B     cap A    @   ?   >   =   <   ;   :   9   8   7   6   5   4   3   2   1   0   /   .   -   ,   +   *   )   (   '   &   %   $   #   "   !   SPACE 

 Insert a character.
Speaks the character if emacspeak-character-echo is true.
See  command emacspeak-toggle-word-echo bound to
C-e d w.
Toggle variable dtk-stop-immediately-while-typing if you want to have
speech flush as you type. 

------------------------------------------------------------

** emacspeak-audio-setup	Key Sequence: control e ( 

 Call appropriate audio environment set command. 

------------------------------------------------------------

** emacspeak-play-all-icons Plays all defined icons and speaks their names. 

------------------------------------------------------------

** emacspeak-set-auditory-icon-player	Key Sequence: control e meta a 

 Select  player used for producing auditory icons.
Recommended choices:

emacspeak-serve-auditory-icon for  the wave device.
emacspeak-queue-auditory-icon when using software TTS. 

------------------------------------------------------------

** emacspeak-sounds-reset-local-player Ask Emacspeak to use a local audio player.
This lets me have Emacspeak switch to using audioplay on
solaris after I've used it for a while from a remote session
where it would use the more primitive speech-server based
audio player. 

------------------------------------------------------------

** emacspeak-sounds-reset-sound Reload sound drivers. 

------------------------------------------------------------

** emacspeak-sounds-select-theme	Key Sequence: control e ) 

 Select theme for auditory icons. 

------------------------------------------------------------

** emacspeak-toggle-auditory-icons	Key Sequence: control e control a 

 Toggle use of auditory icons.
Optional interactive PREFIX arg toggles global value. 

------------------------------------------------------------

** emacspeak-audio-annotate-paragraphs Set property auditory-icon at front of all paragraphs. 

------------------------------------------------------------

** emacspeak-blink-matching-open Move cursor momentarily to the beginning of the sexp before point.
Also display match context in minibuffer. 

------------------------------------------------------------

** emacspeak-completion-pick-completion Pick completion and return safely where we came from. 

------------------------------------------------------------

** emacspeak-completions-move-to-completion-group Move to group of choices beginning with character last
typed. If no such group exists, then we try to search for that
char, or dont move.  

------------------------------------------------------------

** emacspeak-dial-dtk	Key Sequence: control e d t 

 Prompt for and dial a phone NUMBER with the Dectalk. 

------------------------------------------------------------

** emacspeak-execute-repeatedly Execute COMMAND repeatedly. 

------------------------------------------------------------

** emacspeak-mark-backward-mark	Key Sequence: <control up> 

 Cycle backward through the mark ring. 

------------------------------------------------------------

** emacspeak-owindow-next-line	Key Sequence: ESCAPE <down> 

 Move to the next line in the other window and speak it.
Numeric prefix arg COUNT can specify number of lines to move. 

------------------------------------------------------------

** emacspeak-owindow-previous-line	Key Sequence: ESCAPE <up> 

 Move to the next line in the other window and speak it.
Numeric prefix arg COUNT specifies number of lines to move. 

------------------------------------------------------------

** emacspeak-owindow-scroll-down	Key Sequence: ESCAPE <prior> 

 Scroll down  the window that command `other-window' would move to.
Speak the window contents after scrolling. 

------------------------------------------------------------

** emacspeak-owindow-scroll-up	Key Sequence: ESCAPE <next> 

 Scroll up the window that command `other-window' would move to.
Speak the window contents after scrolling. 

------------------------------------------------------------

** emacspeak-owindow-speak-line	Key Sequence: ESCAPE <select> 

 Speak the current line in the other window. 

------------------------------------------------------------

** emacspeak-read-next-line	Key Sequence: control e <down> 

 Read next line, specified by an offset, without moving.
Default is to read the next line.  

------------------------------------------------------------

** emacspeak-read-next-word Read next word, specified as a numeric  arg, without moving.
Default is to read the next word.  

------------------------------------------------------------

** emacspeak-read-previous-line	Key Sequence: control e <up> 

 Read previous line, specified by an offset, without moving.
Default is to read the previous line.  

------------------------------------------------------------

** emacspeak-read-previous-word Read previous word, specified as a prefix arg, without moving.
Default is to read the previous word.  

------------------------------------------------------------

** emacspeak-speak-and-skip-extent-upto-char Search forward from point until we hit char.
Speak text between point and the char we hit. 

------------------------------------------------------------

** emacspeak-speak-and-skip-extent-upto-this-char Speak extent delimited by point and last character typed. 

------------------------------------------------------------

** emacspeak-speak-browse-buffer	Key Sequence: control e , 

 Browse current buffer.
Default is to speak chunk having current personality.
Interactive prefix arg `browse'  repeatedly browses  through
  chunks having same personality as the current text chunk. 

------------------------------------------------------------

** emacspeak-speak-buffer	Key Sequence: control e b 

 Speak current buffer  contents.
With prefix ARG, speaks the rest of the buffer from point.
Negative prefix arg speaks from start of buffer to point.
 If voice lock mode is on, the paragraphs in the buffer are
voice annotated first,  see command `emacspeak-speak-voice-annotate-paragraphs'. 

------------------------------------------------------------

** emacspeak-speak-buffer-filename	Key Sequence: control e f 

 Speak name of file being visited in current buffer.
Speak default directory if invoked in a dired buffer,
or when the buffer is not visiting any file.
Interactive prefix arg `filename' speaks only the final path
component.
The result is put in the kill ring for convenience. 

------------------------------------------------------------

** emacspeak-speak-buffer-interactively	Key Sequence: control e  cap B  

 Speak the start of, rest of, or the entire buffer.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire buffer. 

------------------------------------------------------------

** emacspeak-speak-char	Key Sequence: control e c 

 Speak character under point.
Pronounces character phonetically unless  called with a PREFIX arg. 

------------------------------------------------------------

** emacspeak-speak-comint-send-input Causes output to be spoken i.e., as if comint autospeak were turned
on. 

------------------------------------------------------------

** emacspeak-speak-continuously	Key Sequence: control e RETURN 

 Speak a buffer continuously.
First prompts using the minibuffer for the kind of action to
perform after speaking each chunk.  E.G.  speak a line at a time
etc.  Speaking commences at current buffer position.  Pressing
C-g breaks out, leaving point on last chunk that
was spoken.  Any other key continues to speak the buffer. 

------------------------------------------------------------

** emacspeak-speak-current-column	Key Sequence: control e = 

 Speak the current column. 

------------------------------------------------------------

** emacspeak-speak-current-field	Key Sequence: control e . 

 Speak current field. 

------------------------------------------------------------

** emacspeak-speak-current-kill	Key Sequence: control e k 

 Speak the current kill entry.
This is the text that will be yanked in by the next C-y.
Prefix numeric arg, COUNT, specifies that the text that will be yanked as a
result of a
C-y  followed by count-1 M-y
be spoken.
 The kill number that is spoken says what numeric prefix arg to give
to command yank. 

------------------------------------------------------------

** emacspeak-speak-current-mark	Key Sequence: control e control @ 

 Speak the line containing the mark.
With no argument, speaks the
line containing the mark--this is where `exchange-point-and-mark'
C-x C-x would jump.  Numeric prefix arg 'COUNT' speaks
line containing mark 'n' where 'n' is one less than the number of
times one has to jump using `set-mark-command' to get to this marked
position.  The location of the mark is indicated by an aural highlight
achieved by a change in voice personality. 

------------------------------------------------------------

** emacspeak-speak-current-percentage	Key Sequence: control e % 

 Announce the percentage into the current buffer. 

------------------------------------------------------------

** emacspeak-speak-current-window Speak contents of current window.
Speaks entire window irrespective of point. 

------------------------------------------------------------

** emacspeak-speak-display-char Display char under point using current speech display table.
Behavior is the same as command `emacspeak-speak-char'
bound to C-e c
for characters in the range 0--127.
Optional argument PREFIX  specifies that the character should be spoken phonetically. 

------------------------------------------------------------

** emacspeak-speak-face-interval-and-move Speaks region delimited by text in current face, and moves past the chunk. 

------------------------------------------------------------

** emacspeak-speak-front-of-buffer Speak   the buffer from start to   point 

------------------------------------------------------------

** emacspeak-speak-header-line	Key Sequence: control e SPACE 

 Speak header line if set. 

------------------------------------------------------------

** emacspeak-speak-help	Key Sequence: control e h 

 Speak help buffer if one present.
With prefix arg, speaks the rest of the buffer from point.
Negative prefix arg speaks from start of buffer to point. 

------------------------------------------------------------

** emacspeak-speak-help-interactively Speak the start of, rest of, or the entire help.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire help. 

------------------------------------------------------------

** emacspeak-speak-line	Key Sequence: control e l 

 Speaks current line.  With prefix ARG, speaks the rest of the line
from point.  Negative prefix optional arg speaks from start of line to
point.  Voicifies if option `voice-lock-mode' is on.  Indicates
indentation with a tone if audio indentation is in use.  Indicates
position of point with an aural highlight if option
`emacspeak-show-point' is turned on --see command
`emacspeak-show-point' bound to M-x emacspeak-show-point.  Lines that
start hidden blocks of text, e.g.  outline header lines, or header
lines of blocks created by command `emacspeak-hide-or-expose-block'
are indicated with auditory icon ellipses. 

------------------------------------------------------------

** emacspeak-speak-line-interactively	Key Sequence: control e  cap L  

 Speak the start of, rest of, or the entire line.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire line. 

------------------------------------------------------------

** emacspeak-speak-line-number	Key Sequence: control e control l 

 Print the current buffer line number and narrowed line number of point. 

------------------------------------------------------------

** emacspeak-speak-line-set-column-filter	Key Sequence: control e | 

 Set up filter for selectively speaking or ignoring portions of lines.
The filter is specified as a list of pairs.
For example, to filter  columns 1 -- 10 and 20 -- 25,
specify filter as
((0 9) (20 25)). Filter settings are persisted across sessions.  A
persisted filter is used as the default when prompting for a filter.
This allows one to accumulate a set of filters for specific files like
/var/adm/messages and /var/adm/maillog over time.
Option emacspeak-speak-line-invert-filter determines
the sense of the filter.  

------------------------------------------------------------

** emacspeak-speak-load-directory-settings Load a directory specific Emacspeak settings file.
This is typically used to load up settings that are specific to
an electronic book consisting of many files in the same
directory. 

------------------------------------------------------------

** emacspeak-speak-message-again	Key Sequence: control e a 

 Speak the last message from Emacs once again.
The message is also placed in the kill ring for convenient yanking
if `emacspeak-speak-message-again-should-copy-to-kill-ring' is set. 

------------------------------------------------------------

** emacspeak-speak-message-at-time	Key Sequence: control e @ 

 Set up ring-at-time to speak message at specified time.
Provides simple stop watch functionality in addition to other things.
See documentation for command run-at-time for details on time-spec. 

------------------------------------------------------------

** emacspeak-speak-minibuffer Speak the minibuffer contents
 With prefix arg, speaks the rest of the buffer from point.
Negative prefix arg speaks from start of buffer to point. 

------------------------------------------------------------

** emacspeak-speak-minor-mode-line	Key Sequence: control e  cap M  

 Speak the minor mode-information. 

------------------------------------------------------------

** emacspeak-speak-mode-line	Key Sequence: control e m 

 Speak the mode-line.
Speaks header-line if that is set when called non-interactively.
Interactive prefix arg speaks buffer info. 

------------------------------------------------------------

** emacspeak-speak-next-face-chunk Moves to the front of next chunk having current face.
Speak that chunk after moving. 

------------------------------------------------------------

** emacspeak-speak-next-field	Key Sequence: control e > 

 Move to and speak next field. 

------------------------------------------------------------

** emacspeak-speak-next-personality-chunk Moves to the front of next chunk having current personality.
Speak that chunk after moving. 

------------------------------------------------------------

** emacspeak-speak-next-window	Key Sequence: control e control n 

 Speak the next window. 

------------------------------------------------------------

** emacspeak-speak-other-buffer	Key Sequence: control e meta b 

 Speak specified buffer.
Useful to listen to a buffer without switching  contexts. 

------------------------------------------------------------

** emacspeak-speak-other-window Speak contents of `other' window.
Speaks entire window irrespective of point.
Semantics  of `other' is the same as for the builtin Emacs command
`other-window'.
Optional argument ARG  specifies `other' window to speak. 

------------------------------------------------------------

** emacspeak-speak-page	Key Sequence: control e [ 

 Speak a page.
With prefix ARG, speaks rest of current page.
Negative prefix arg will read from start of current page to point.
If option  `voice-lock-mode' is on, then it will use any defined personality. 

------------------------------------------------------------

** emacspeak-speak-page-interactively	Key Sequence: control e ] 

 Speak the start of, rest of, or the entire page.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire page. 

------------------------------------------------------------

** emacspeak-speak-paragraph	Key Sequence: control e { 

 Speak paragraph.
With prefix arg, speaks rest of current paragraph.
Negative prefix arg will read from start of current paragraph to point.
If voice-lock-mode is on, then it will use any defined personality.  

------------------------------------------------------------

** emacspeak-speak-paragraph-interactively	Key Sequence: control e  cap P  

 Speak the start of, rest of, or the entire paragraph.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire paragraph. 

------------------------------------------------------------

** emacspeak-speak-predefined-window	Key Sequence: control e 9   control e 8   control e 7   control e 6   control e 5   control e 4   control e 3   control e 2   control e 1   control e 0 

 Speak one of the first 10 windows on the screen.
Speaks entire window irrespective of point.
In general, you'll never have Emacs split the screen into more than
two or three.
Argument ARG determines the 'other' window to speak.
Semantics  of `other' is the same as for the builtin Emacs command
`other-window'. 

------------------------------------------------------------

** emacspeak-speak-previous-face-chunk Moves to the front of previous chunk having current face.
Speak that chunk after moving. 

------------------------------------------------------------

** emacspeak-speak-previous-field	Key Sequence: control e < 

 Move to previous field and speak it. 

------------------------------------------------------------

** emacspeak-speak-previous-personality-chunk Moves to the front of previous chunk having current personality.
Speak that chunk after moving. 

------------------------------------------------------------

** emacspeak-speak-previous-window	Key Sequence: control e control p 

 Speak the previous window. 

------------------------------------------------------------

** emacspeak-speak-rectangle	Key Sequence: control e  cap R  

 Speak a rectangle of text.
Rectangle is delimited by point and mark.
When call from a program,
arguments specify the START and END of the rectangle. 

------------------------------------------------------------

** emacspeak-speak-region	Key Sequence: control e r 

 Speak region.
Argument START  and END specify region to speak. 

------------------------------------------------------------

** emacspeak-speak-rest-of-buffer	Key Sequence: control e n 

 Speak remainder of the buffer starting at point 

------------------------------------------------------------

** emacspeak-speak-sentence Speak current sentence.
With prefix ARG, speaks the rest of the sentence  from point.
Negative prefix arg speaks from start of sentence to point. 

------------------------------------------------------------

** emacspeak-speak-set-display-table Sets up buffer specific speech display table that controls how
special characters are spoken. Interactive prefix argument causes
setting to be global. 

------------------------------------------------------------

** emacspeak-speak-sexp	Key Sequence: control e ' 

 Speak current sexp.
With prefix ARG, speaks the rest of the sexp  from point.
Negative prefix arg speaks from start of sexp to point.
If option  `voice-lock-mode' is on, then uses the personality. 

------------------------------------------------------------

** emacspeak-speak-sexp-interactively	Key Sequence: control e " 

 Speak the start of, rest of, or the entire sexp.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire sexp. 

------------------------------------------------------------

** emacspeak-speak-skim-buffer Skim the current buffer  a paragraph at a time. 

------------------------------------------------------------

** emacspeak-speak-skim-next-paragraph Skim next paragraph. 

------------------------------------------------------------

** emacspeak-speak-skim-paragraph Skim paragraph.
Skimming a paragraph results in the speech speeding up after
the first clause.
Speech is scaled by the value of dtk-speak-skim-scale 

------------------------------------------------------------

** emacspeak-speak-spaces-at-point	Key Sequence: control e CONTROL meta @ 

 Speak the white space at point. 

------------------------------------------------------------

** emacspeak-speak-spell-current-word Spell word at  point. 

------------------------------------------------------------

** emacspeak-speak-this-face-chunk Speak chunk of text around point that has current face. 

------------------------------------------------------------

** emacspeak-speak-this-personality-chunk Speak chunk of text around point that has current
personality. 

------------------------------------------------------------

** emacspeak-speak-time	Key Sequence: control e t 

 Speak the time.
Optional interactive prefix arg `C-u'invokes world clock.
Timezone is specified using minibuffer completion.
Second interactive prefix sets clock to new timezone. 

------------------------------------------------------------

** emacspeak-speak-version	Key Sequence: control e  cap V  

 Announce version information for running emacspeak. 

------------------------------------------------------------

** emacspeak-speak-voice-annotate-paragraphs Locate paragraphs and voice annotate the first word.
Here, paragraph is taken to mean a chunk of text preceded by a blank line.
Useful to do this before you listen to an entire buffer. 

------------------------------------------------------------

** emacspeak-speak-window-information	Key Sequence: control e control w 

 Speaks information about current window. 

------------------------------------------------------------

** emacspeak-speak-word	Key Sequence: control e w 

 Speak current word.
With prefix ARG, speaks the rest of the word from point.
Negative prefix arg speaks from start of word to point.
If executed  on the same buffer position a second time, the word is
spelt instead of being spoken. 

------------------------------------------------------------

** emacspeak-speak-word-interactively Speak the start of, rest of, or the entire word.
's' to speak the start.
'r' to speak the rest.
any other key to speak entire word. 

------------------------------------------------------------

** emacspeak-speak-world-clock Display current date and time  for specified zone.
Optional second arg `set' sets the TZ environment variable as well. 

------------------------------------------------------------

** emacspeak-switch-to-reference-buffer Switch back to buffer that generated completions. 

------------------------------------------------------------

** emacspeak-toggle-action-mode Toggle state of  Emacspeak  action mode.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-audio-indentation	Key Sequence: control e d i 

 Toggle state of  Emacspeak  audio indentation.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result.
Specifying the method of indentation as `tones'
results in the Dectalk producing a tone whose length is a function of the
line's indentation.  Specifying `speak'
results in the number of initial spaces being spoken. 

------------------------------------------------------------

** emacspeak-toggle-character-echo	Key Sequence: control e d k 

 Toggle state of  Emacspeak  character echo.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-comint-autospeak	Key Sequence: control e control q 

 Toggle state of Emacspeak comint autospeak.
When turned on, comint output is automatically spoken.  Turn this on if
you want your shell to speak its results.  Interactive
PREFIX arg means toggle the global default value, and then
set the current local value to the result. 

------------------------------------------------------------

** emacspeak-toggle-header-line Toggle Emacspeak's default header line. 

------------------------------------------------------------

** emacspeak-toggle-line-echo	Key Sequence: control e d l 

 Toggle state of  Emacspeak  line echo.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-mail-alert	Key Sequence: control e meta m 

 Toggle state of  Emacspeak  mail alert.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result.
Turning on this option results in Emacspeak producing an auditory icon
indicating the arrival  of new mail when displaying the mode line. 

------------------------------------------------------------

** emacspeak-toggle-show-point	Key Sequence: control e control d 

 Toggle state of  Emacspeak-show-point.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-speak-line-invert-filter	Key Sequence: control e \ 

 Toggle state of   how column filter is interpreted.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-speak-messages	Key Sequence: control e q 

 Toggle the state of whether emacspeak echoes messages. 

------------------------------------------------------------

** emacspeak-toggle-which-function	Key Sequence: control e meta w 

 Toggle state of  Emacspeak  which function mode.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-toggle-word-echo	Key Sequence: control e d w 

 Toggle state of  Emacspeak  word echo.
Interactive PREFIX arg means toggle  the global default value, and then set the
current local  value to the result. 

------------------------------------------------------------

** emacspeak-use-customized-blink-paren A customized blink-paren to speak  matching opening paren.
We need to call this in case Emacs is anal and loads its own
builtin blink-paren function which does not talk. 

------------------------------------------------------------

** emacspeak-voicify-rectangle Voicify the current rectangle.
When calling from a program,arguments are
START END personality
Prompts for PERSONALITY  with completion when called interactively. 

------------------------------------------------------------

** emacspeak-voicify-region Voicify the current region.
When calling from a program,arguments are
START END personality.
Prompts for PERSONALITY  with completion when called interactively. 

------------------------------------------------------------

** emacspeak-zap-tts	Key Sequence: control e d z 

 Send this command to the TTS directly. 

------------------------------------------------------------

** emacspeak-table-copy-current-element-to-kill-ring Copy current table element to kill ring. 

------------------------------------------------------------

** emacspeak-table-copy-current-element-to-register Copy current table element to specified register. 

------------------------------------------------------------

** emacspeak-table-copy-to-clipboard Copy table in current buffer to the table clipboard.
Current buffer must be in emacspeak-table mode. 

------------------------------------------------------------

** emacspeak-table-display-table-in-region	Key Sequence: control e TAB 

 Recognize tabular data in current region and display it in table
browsing mode in a a separate buffer.
emacspeak table mode is designed to let you browse tabular data using
all the power of the two-dimensional spatial layout while giving you
sufficient contextual information.  The tables subdirectory of the
emacspeak distribution contains some sample tables --these are the
CalTrain schedules.  Execute command `describe-mode' bound to
C-h m in a buffer that is in emacspeak table mode to read
the documentation on the table browser. 

------------------------------------------------------------

** emacspeak-table-find-csv-file Process a csv (comma separated values) file.
The processed  data and presented using emacspeak table navigation.  

------------------------------------------------------------

** emacspeak-table-find-file	Key Sequence: control e control t 

 Open a file containing table data and display it in table mode.
emacspeak table mode is designed to let you browse tabular data using
all the power of the two-dimensional spatial layout while giving you
sufficient contextual information.  The etc/tables subdirectory of the
emacspeak distribution contains some sample tables --these are the
CalTrain schedules.  Execute command `describe-mode' bound to
C-h m in a buffer that is in emacspeak table mode to read
the documentation on the table browser. 

------------------------------------------------------------

** emacspeak-table-get-entry-with-headers Return   both row and column header and table element 

------------------------------------------------------------

** emacspeak-table-goto Prompt for a table cell coordinates and jump to it. 

------------------------------------------------------------

** emacspeak-table-goto-bottom Goes to the bottom of the current column. 

------------------------------------------------------------

** emacspeak-table-goto-left Goes to the left of the current row. 

------------------------------------------------------------

** emacspeak-table-goto-right Goes to the right of the current row. 

------------------------------------------------------------

** emacspeak-table-goto-top Goes to the top of the current column. 

------------------------------------------------------------

** emacspeak-table-next-column Move to the next column if possible 

------------------------------------------------------------

** emacspeak-table-next-row Move to the next row if possible 

------------------------------------------------------------

** emacspeak-table-paste-from-clipboard Paste the emacspeak table clipboard into the current buffer.
Use the major  mode of this buffer to  decide what kind of table
markup to use. 

------------------------------------------------------------

** emacspeak-table-previous-column Move to the previous column  if possible 

------------------------------------------------------------

** emacspeak-table-previous-row Move to the previous row if possible 

------------------------------------------------------------

** emacspeak-table-search Search the table for matching elements.  Interactively prompts for
row or column to search and pattern to look for.    If there is a match, makes
the matching cell current. When called from a program, `what' can
  be either `row' or `column'. 

------------------------------------------------------------

** emacspeak-table-search-column Search in current table column. 

------------------------------------------------------------

** emacspeak-table-search-headers Search the table row or column headers.  Interactively prompts for
row or column to search and pattern to look for.  If there is a
match, makes the matching row or column current. 

------------------------------------------------------------

** emacspeak-table-search-row Search in current table row. 

------------------------------------------------------------

** emacspeak-table-select-automatic-speaking-method Interactively select the kind of automatic speech to produce when
browsing table elements 

------------------------------------------------------------

** emacspeak-table-sort-on-current-column Sort table on current column.  

------------------------------------------------------------

** emacspeak-table-speak-both-headers-and-element Speak  both row and column header and table element 

------------------------------------------------------------

** emacspeak-table-speak-column-filtered Speaks a table column after applying a specified column filter.
Optional prefix arg prompts for a new filter. 

------------------------------------------------------------

** emacspeak-table-speak-column-header-and-element Speak  column header and table element 

------------------------------------------------------------

** emacspeak-table-speak-coordinates Speak current table coordinates. 

------------------------------------------------------------

** emacspeak-table-speak-current-element Speak current table element 

------------------------------------------------------------

** emacspeak-table-speak-dimensions Speak current table dimensions. 

------------------------------------------------------------

** emacspeak-table-speak-row-filtered Speaks a table row after applying a specified row filter.
Optional prefix arg prompts for a new filter. 

------------------------------------------------------------

** emacspeak-table-speak-row-header-and-element Speak  row header and table element 

------------------------------------------------------------

** emacspeak-table-ui-filter-load Load saved filter settings. 

------------------------------------------------------------

** emacspeak-table-ui-filter-save Save out filter settings. 

------------------------------------------------------------

** emacspeak-table-view-csv-buffer Process a csv (comma separated values) data.
The processed  data and presented using emacspeak table navigation.  

------------------------------------------------------------

** emacspeak-view-line-to-top Moves current line to top of window 

------------------------------------------------------------

** emacspeak-we-class-filter-and-follow Follow url and point, and filter the result by specified class.
Class can be set locally for a buffer, and overridden with an
interactive prefix arg. If there is a known rewrite url rule, that is
used as well. 

------------------------------------------------------------

** emacspeak-we-count-matches Count matches for locator  in Web page. 

------------------------------------------------------------

** emacspeak-we-count-nested-tables Count nested tables in Web page. 

------------------------------------------------------------

** emacspeak-we-count-tables Count  tables in Web page. 

------------------------------------------------------------

** emacspeak-we-extract-by-class Extract elements having specified class attribute from HTML. Extracts
specified elements from current WWW page and displays it in a separate
buffer. Interactive use provides list of class values as completion. 

------------------------------------------------------------

** emacspeak-we-extract-by-class-list Extract elements having class specified in list `classes' from HTML.
Extracts specified elements from current WWW page and displays it
in a separate buffer.  Interactive use provides list of class
values as completion.  

------------------------------------------------------------

** emacspeak-we-extract-by-id Extract elements having specified id attribute from HTML. Extracts
specified elements from current WWW page and displays it in a separate
buffer.
Interactive use provides list of id values as completion. 

------------------------------------------------------------

** emacspeak-we-extract-by-id-list Extract elements having id specified in list `ids' from HTML.
Extracts specified elements from current WWW page and displays it in a
separate buffer. Interactive use provides list of id values as completion.  

------------------------------------------------------------

** emacspeak-we-extract-by-property Interactively prompt for an HTML property, e.g. id or class,
and provide a completion list of applicable  property values. Filter document by property that is specified. 

------------------------------------------------------------

** emacspeak-we-extract-matching-urls Extracts links whose URL matches pattern. 

------------------------------------------------------------

** emacspeak-we-extract-media-streams Extract links to media streams.
operate on current web page when in a browser buffer; otherwise
 prompt for url.  Optional arg `speak' specifies if the result
 should be spoken automatically. 

------------------------------------------------------------

** emacspeak-we-extract-media-streams-under-point In browser buffers, extract media streams from url under point. 

------------------------------------------------------------

** emacspeak-we-extract-nested-table Extract nested table specified by `table-index'. Default is to
operate on current web page when in a browser buffer; otherwise
prompt for URL. Optional arg `speak' specifies if the result should be
spoken automatically. 

------------------------------------------------------------

** emacspeak-we-extract-nested-table-list Extract specified list of tables from a Web page. 

------------------------------------------------------------

** emacspeak-we-extract-print-streams Extract links to printable  streams.
operate on current web page when in a browser buffer; otherwise
 prompt for url.  Optional arg `speak' specifies if the result
 should be spoken automatically. 

------------------------------------------------------------

** emacspeak-we-extract-table-by-match Extract table containing  specified match.
 Optional arg url specifies the page to extract content from. 

------------------------------------------------------------

** emacspeak-we-extract-table-by-position Extract table at specified position.
Default is to extract from current page. 

------------------------------------------------------------

** emacspeak-we-extract-tables-by-match-list Extract specified  tables from a WWW page.
Tables are specified by containing  match pattern
 found in the match list. 

------------------------------------------------------------

** emacspeak-we-extract-tables-by-position-list Extract specified list of nested tables from a WWW page.
Tables are specified by their position in the list
 of nested tables found in the page. 

------------------------------------------------------------

** emacspeak-we-follow-and-filter-by-id Follow url and point, and filter the result by specified id.
Id can be set locally for a buffer, and overridden with an
interactive prefix arg. If there is a known rewrite url rule, that is
used as well. 

------------------------------------------------------------

** emacspeak-we-junk-by-class-list Junk elements having class specified in list `classes' from HTML.
Extracts specified elements from current WWW page and displays it in a
separate buffer.
 Interactive use provides list of class values as
completion.  

------------------------------------------------------------

** emacspeak-we-style-filter Extract elements matching specified style
from HTML.  Extracts specified elements from current WWW
page and displays it in a separate buffer.  Optional arg url
specifies the page to extract contents  from. 

------------------------------------------------------------

** emacspeak-we-toggle-xsl-keep-result Toggle xsl keep result flag. 

------------------------------------------------------------

** emacspeak-we-url-expand-and-execute Applies buffer-specific URL expander/executor function. 

------------------------------------------------------------

** emacspeak-we-url-rewrite-and-follow Apply a url rewrite rule as specified in the current buffer
before following link under point.  If no rewrite rule is
defined, first prompt for one.  Rewrite rules are of the
form `(from to)' where from and to are strings.  Typically, the
rewrite rule is automatically set up by Emacspeak tools like
websearch where a rewrite rule is known.  Rewrite rules are
useful in jumping directly to the printer friendly version of an
article for example.  Optional interactive prefix arg prompts for
a rewrite rule even if one is already defined. 

------------------------------------------------------------

** emacspeak-we-xpath-filter-and-follow Follow url and point, and filter the result by specified xpath.
XPath can be set locally for a buffer, and overridden with an
interactive prefix arg. If there is a known rewrite url rule, that is
used as well. 

------------------------------------------------------------

** emacspeak-we-xpath-junk-and-follow Follow url and point, and filter the result by junking
elements specified by xpath.
XPath can be set locally for a buffer, and overridden with an
interactive prefix arg. If there is a known rewrite url rule, that is
used as well. 

------------------------------------------------------------

** emacspeak-we-xsl-toggle Toggle  application of XSL transformations. 

------------------------------------------------------------

** emacspeak-we-xslt-apply Apply specified transformation to current Web page. 

------------------------------------------------------------

** emacspeak-we-xslt-filter Extract elements matching specified XPath path locator
from Web page -- default is the current page being viewed. 

------------------------------------------------------------

** emacspeak-we-xslt-junk Junk elements matching specified locator. 

------------------------------------------------------------

** emacspeak-we-xslt-select Select XSL transformation applied to Web pages before they are displayed . 

------------------------------------------------------------

** emacspeak-webmarks-add Add WebMark. 

------------------------------------------------------------

** emacspeak-webmarks-history Search search history. 

------------------------------------------------------------

** emacspeak-webmarks-list List WebMarks. 

------------------------------------------------------------

** emacspeak-webmarks-search Search WebMarks. 

------------------------------------------------------------

** emacspeak-webspace-atom-view View Atom feed. 

------------------------------------------------------------

** emacspeak-webspace-feed-view View  feed using gfeeds. 

------------------------------------------------------------

** emacspeak-webspace-filter Open headline at point by following its link property and filter for content. 

------------------------------------------------------------

** emacspeak-webspace-google Display Google Search in a WebSpace buffer. 

------------------------------------------------------------

** emacspeak-webspace-headlines	Key Sequence: hyper  SPACE h 

 Speak current news headline. 

------------------------------------------------------------

** emacspeak-webspace-headlines-view	Key Sequence: <control return> 

 Display all cached headlines in a special interaction buffer. 

------------------------------------------------------------

** emacspeak-webspace-mode Major mode for Webspace interaction.



Uses keymap "emacspeak-webspace-mode-map

This mode runs the hook `emacspeak-webspace-mode-hook', as the final step
during initialization.", which is not currently defined.
 

------------------------------------------------------------

** emacspeak-webspace-next-link Move to next link. 

------------------------------------------------------------

** emacspeak-webspace-open Open headline at point by following its link property. 

------------------------------------------------------------

** emacspeak-webspace-previous-link Move to previous link. 

------------------------------------------------------------

** emacspeak-webspace-reader Display Google Reader Feed list in a WebSpace buffer. 

------------------------------------------------------------

** emacspeak-webspace-reader-unsubscribe Unsubscribe to link under point. 

------------------------------------------------------------

** emacspeak-webspace-rss-view View RSS feed. 

------------------------------------------------------------

** emacspeak-webspace-transcode Transcode headline at point by following its link property. 

------------------------------------------------------------

** emacspeak-webspace-update-headlines Setup  news updates.
Updated headlines found in emacspeak-webspace-headlines. 

------------------------------------------------------------

** emacspeak-webspace-update-weather Setup periodic weather updates.
Updated weather is found in `emacspeak-webspace-current-weather'. 

------------------------------------------------------------

** emacspeak-webspace-weather	Key Sequence: hyper  SPACE w 

 Speak current weather. 

------------------------------------------------------------

** emacspeak-webspace-yank-link Yank link under point into kill ring. 

------------------------------------------------------------

** emacspeak-atom-browse Browse specified ATOM feed. 

------------------------------------------------------------

** emacspeak-opml-display Retrieve and display OPML  URL. 

------------------------------------------------------------

** emacspeak-rss-browse	Key Sequence: control e control u 

 Browse specified RSS feed. 

------------------------------------------------------------

** emacspeak-webutils-atom-display Display ATOM feed. 

------------------------------------------------------------

** emacspeak-webutils-fv Display RSS or ATOM feed URL. 

------------------------------------------------------------

** emacspeak-webutils-google-extract-from-cache Extract current  page from the Google cache.
With a prefix argument, extracts url under point. 

------------------------------------------------------------

** emacspeak-webutils-google-on-this-site Perform a google search restricted to the current WWW site. 

------------------------------------------------------------

** emacspeak-webutils-google-similar-to-this-page Ask Google to find documents similar to this one. 

------------------------------------------------------------

** emacspeak-webutils-google-who-links-to-this-page Perform a google search to locate documents that link to the
current page. 

------------------------------------------------------------

** emacspeak-webutils-jump-to-title-in-content Jumps to the title in web document.
The first time it is called, it jumps to the first
instance  of the title.  Repeated calls jump to further
instances. 

------------------------------------------------------------

** emacspeak-webutils-open-in-other-browser Opens link in alternate browser.
 If using default browser is w3, uses w3m and vice-versa 

------------------------------------------------------------

** emacspeak-webutils-play-media-at-point Play media url under point  

------------------------------------------------------------

** emacspeak-webutils-rss-display Display RSS feed. 

------------------------------------------------------------

** emacspeak-webutils-transcode-current-url-via-google Transcode current URL via Google.
  Reverse effect with prefix arg. 

------------------------------------------------------------

** emacspeak-webutils-transcode-via-google Transcode URL under point via Google.
 Reverse effect with prefix arg for links on a transcoded page. 

------------------------------------------------------------

** emacspeak-webutils-view-feed-via-google-reader Pulls feed under point via Google Reader. 

------------------------------------------------------------

** emacspeak-widget-browse-widget-interactively Allows you to browse a widget 

------------------------------------------------------------

** emacspeak-widget-help Speak help for widget under point. 

------------------------------------------------------------

** emacspeak-widget-summarize-parent Summarize parent of widget at point. 

------------------------------------------------------------

** emacspeak-widget-summarize-widget-under-point Summarize a widget if any under point.
Optional interactive prefix specifies how many levels to go up from current
widget before summarizing. 

------------------------------------------------------------

** emacspeak-widget-update-from-minibuffer Sets widget at point by invoking its prompter. 

------------------------------------------------------------

** emacspeak-annotate-add-annotation Add annotation to the annotation working buffer.
Prompt for annotation buffer if not already set.
Interactive prefix arg `reset' prompts for the annotation
buffer even if one is already set.
Annotation is entered in a temporary buffer and the
annotation is inserted into the working buffer when complete. 

------------------------------------------------------------

** emacspeak-clipboard-copy	Key Sequence: control e control c 

 Copy contents of the region to the emacspeak clipboard.
Previous contents of the clipboard will be overwritten.  The Emacspeak
clipboard is a convenient way of sharing information between
independent Emacspeak sessions running on the same or different
machines.  Do not use this for sharing information within an Emacs
session --Emacs' register commands are far more efficient and
light-weight.  Optional interactive prefix arg results in Emacspeak
prompting for the clipboard file to use.
Argument START and END specifies  region.
Optional argument PROMPT  specifies whether we prompt for the name of a clipboard file. 

------------------------------------------------------------

** emacspeak-clipboard-paste	Key Sequence: control e control y 

 Yank contents of the Emacspeak clipboard at point.
The Emacspeak clipboard is a convenient way of sharing information between
independent Emacspeak sessions running on the same or different
machines.  Do not use this for sharing information within an Emacs
session --Emacs' register commands are far more efficient and
light-weight.  Optional interactive prefix arg pastes from
the emacspeak table clipboard instead. 

------------------------------------------------------------

** emacspeak-copy-current-file	Key Sequence: control e meta c 

 Copy file visited in current buffer to new location.
Prompts for the new location and preserves modification time
  when copying.  If location is a directory, the file is copied
  to that directory under its current name ; if location names
  a file in an existing directory, the specified name is
  used.  Asks for confirmation if the copy will result in an
  existing file being overwritten. 

------------------------------------------------------------

** emacspeak-curl Grab URL using Curl, and preview it with a browser . 

------------------------------------------------------------

** emacspeak-customize	Key Sequence: control e  cap C  

 Customize Emacspeak. 

------------------------------------------------------------

** emacspeak-customize-personal-settings Create a customization buffer for browsing and updating
personal customizations. 

------------------------------------------------------------

** emacspeak-cvs-berlios-get-project-snapshot Grab CVS snapshot  of specified project from berlios.de.
Ask for module name if prefix argument is given 

------------------------------------------------------------

** emacspeak-cvs-get-anonymous Get latest cvs snapshot of emacspeak. 

------------------------------------------------------------

** emacspeak-cvs-gnu-get-project-snapshot Grab CVS snapshot  of specified project from gnu.
Ask for module name if prefix argument is given 

------------------------------------------------------------

** emacspeak-cvs-sf-get-project-snapshot Grab CVS snapshot  of specified project from sf.
Ask for module name if prefix argument is given 

------------------------------------------------------------

** emacspeak-emergency-tts-restart	Key Sequence: control e <insert> 

 For use in an emergency.
Will start TTS engine specified by
emacspeak-emergency-tts-server. 

------------------------------------------------------------

** emacspeak-frame-label-or-switch-to-labelled-frame	Key Sequence: control e meta f 

 Switch to labelled frame.
With optional PREFIX argument, label current frame. 

------------------------------------------------------------

** emacspeak-frame-read-frame-label Read a frame label with completion. 

------------------------------------------------------------

** emacspeak-generate-documentation Generate docs for all emacspeak commands.
Prompts for FILENAME in which to save the documentation.
Warning! Contents of file filename will be overwritten. 

------------------------------------------------------------

** emacspeak-generate-texinfo-command-documentation Generate texinfo documentation  for all emacspeak
commands  into file commands.texi.
Warning! Contents of file commands.texi will be overwritten. 

------------------------------------------------------------

** emacspeak-generate-texinfo-option-documentation Generate texinfo documentation  for all emacspeak
options  into file filename.
Warning! Contents of file filename will be overwritten. 

------------------------------------------------------------

** emacspeak-kill-buffer-quietly Kill current buffer without asking for confirmation. 

------------------------------------------------------------

** emacspeak-learn-emacs-mode	Key Sequence: control e <f1>   control h control l   <f1> control l   <help> control l 

 Helps you learn the keys.  You can press keys and hear what they do.
To leave, press C-g. 

------------------------------------------------------------

** emacspeak-link-current-file	Key Sequence: control e meta l 

 Link (hard link) file visited in current buffer to new location.
Prompts for the new location and preserves modification time
  when linking.  If location is a directory, the file is copied
  to that directory under its current name ; if location names
  a file in an existing directory, the specified name is
  used.  Signals an error if target already exists. 

------------------------------------------------------------

** emacspeak-links Launch links on  specified URL in a new terminal. 

------------------------------------------------------------

** emacspeak-lynx Launch lynx on  specified URL in a new terminal. 

------------------------------------------------------------

** emacspeak-next-frame-or-buffer	Key Sequence: <control right> 

 Move to next buffer.
With optional interactive prefix arg `frame', move to next frame instead. 

------------------------------------------------------------

** emacspeak-previous-frame-or-buffer	Key Sequence: <control left> 

 Move to previous buffer.
With optional interactive prefix arg `frame', move to previous frame instead. 

------------------------------------------------------------

** emacspeak-root	Key Sequence: control e control r 

 Start a root shell or switch to one that already exists.
Optional interactive prefix arg `cd' executes cd
default-directory after switching. 

------------------------------------------------------------

** emacspeak-select-this-buffer-next-display	Key Sequence: control e <control right> 

 Select this buffer as displayed in a `next' frame.
See documentation for command
`emacspeak-select-this-buffer-other-window-display' for the
meaning of `next'. 

------------------------------------------------------------

** emacspeak-select-this-buffer-other-window-display Switch  to this buffer as displayed in a different frame.  Emacs
allows you to display the same buffer in multiple windows or
frames.  These different windows can display different
portions of the buffer.  This is equivalent to leaving a
book open at places at once.  This command allows you to
move to the places where you have left the book open.  The
number used to invoke this command specifies which of the
displays you wish to select.  Typically you will have two or
at most three such displays open.  The current display is 0,
the next is 1, and so on.  Optional argument ARG specifies
the display to select. 

------------------------------------------------------------

** emacspeak-select-this-buffer-previous-display	Key Sequence: control e <control left> 

 Select this buffer as displayed in a `previous' window.
See documentation for command
`emacspeak-select-this-buffer-other-window-display' for the
meaning of `previous'. 

------------------------------------------------------------

** emacspeak-show-personality-at-point	Key Sequence: control e meta v 

 Show value of property personality (and possibly face)
at point. 

------------------------------------------------------------

** emacspeak-show-property-at-point Show value of PROPERTY at point.
If optional arg property is not supplied, read it interactively.
Provides completion based on properties that are of interest.
If no property is set, show a message and exit. 

------------------------------------------------------------

** emacspeak-skip-blank-lines-backward	Key Sequence: <shift up> 

 Move backward  across blank lines.
The line under point is   then spoken.
Signals beginning  of buffer. 

------------------------------------------------------------

** emacspeak-skip-blank-lines-forward	Key Sequence: <shift down> 

 Move forward across blank lines.
The line under point is then spoken.
Signals end of buffer. 

------------------------------------------------------------

** emacspeak-speak-browse-linux-howto	Key Sequence: control e  cap H  

 Browse a Linux Howto file.
We cleanup underlining, and set up outline mode correctly. 

------------------------------------------------------------

** emacspeak-speak-hostname	Key Sequence: control e meta h 

 Speak host name. 

------------------------------------------------------------

** emacspeak-speak-popup-messages	Key Sequence: control h  cap M    <f1>  cap M    <help>  cap M  

 Pop up messages buffer.
If it is already selected then hide it and try to restore
previous window configuration. 

------------------------------------------------------------

** emacspeak-speak-run-shell-command	Key Sequence: control e ! 

 Invoke shell COMMAND and display its output as a table.  The results
are placed in a buffer in Emacspeak's table browsing mode.  Optional
interactive prefix arg as-root runs the command as root.  Use this for running shell commands that produce
tabulated output.  This command should be used for shell commands that
produce tabulated output that works with Emacspeak's table recognizer.
Verify this first by running the command in a shell and executing
command `emacspeak-table-display-table-in-region' normally bound to
C-e TAB. 

------------------------------------------------------------

** emacspeak-speak-show-active-network-interfaces	Key Sequence: control e  cap I  

 Shows all active network interfaces in the echo area.
With interactive prefix argument ADDRESS it prompts for a
specific interface and shows its address. The address is
also copied to the kill ring for convenient yanking. 

------------------------------------------------------------

** emacspeak-speak-telephone-directory Lookup and display a phone number.
With prefix arg, opens the phone book for editting. 

------------------------------------------------------------

** emacspeak-speak-this-buffer-next-display	Key Sequence: control e <right> 

 Speak this buffer as displayed in a `previous' window.
See documentation for command
`emacspeak-speak-this-buffer-other-window-display' for the
meaning of `next'. 

------------------------------------------------------------

** emacspeak-speak-this-buffer-other-window-display	Key Sequence: control e / 

 Speak this buffer as displayed in a different frame.  Emacs
allows you to display the same buffer in multiple windows or
frames.  These different windows can display different
portions of the buffer.  This is equivalent to leaving a
book open at places at once.  This command allows you to
listen to the places where you have left the book open.  The
number used to invoke this command specifies which of the
displays you wish to speak.  Typically you will have two or
at most three such displays open.  The current display is 0,
the next is 1, and so on.  Optional argument ARG specifies
the display to speak. 

------------------------------------------------------------

** emacspeak-speak-this-buffer-previous-display	Key Sequence: control e <left> 

 Speak this buffer as displayed in a `previous' window.
See documentation for command
`emacspeak-speak-this-buffer-other-window-display' for the
meaning of `previous'. 

------------------------------------------------------------

** emacspeak-ssh-tts-restart	Key Sequence: control e <deletechar>   control e <delete> 

 Restart specified ssh tts server. 

------------------------------------------------------------

** emacspeak-sudo SUDo command --run command as super user. 

------------------------------------------------------------

** emacspeak-switch-to-previous-buffer Switch to most recently used interesting buffer.
Obsoleted by `previous-buffer' in Emacs 22 

------------------------------------------------------------

** emacspeak-symlink-current-file	Key Sequence: control e meta s 

 Link (symbolic link) file visited in current buffer to new location.
Prompts for the new location and preserves modification time
  when linking.  If location is a directory, the file is copied
  to that directory under its current name ; if location names
  a file in an existing directory, the specified name is
  used.  Signals an error if target already exists. 

------------------------------------------------------------

** emacspeak-view-emacspeak-doc Display a summary of all Emacspeak commands. 

------------------------------------------------------------

** emacspeak-view-emacspeak-faq	Key Sequence: control e  cap F  

 Browse the Emacspeak FAQ. 

------------------------------------------------------------

** emacspeak-view-emacspeak-news	Key Sequence: control e  cap N  

 Display info on recent change to Emacspeak. 

------------------------------------------------------------

** emacspeak-view-emacspeak-tips	Key Sequence: control e  cap T  

 Browse  Emacspeak productivity tips. 

------------------------------------------------------------

** emacspeak-wizards-add-autoload-cookies Add autoload cookies to file f.
Default is to add autoload cookies to current file. 

------------------------------------------------------------

** emacspeak-wizards-byte-compile-current-buffer byte compile current buffer 

------------------------------------------------------------

** emacspeak-wizards-comma-at-end-of-word   

------------------------------------------------------------

** emacspeak-wizards-count-slides-in-region Count slides starting from point. 

------------------------------------------------------------

** emacspeak-wizards-display-pod-as-manpage Create a virtual manpage in Emacs from the Perl Online Documentation. 

------------------------------------------------------------

** emacspeak-wizards-dvi-display Called to set up preview of an DVI file.
Assumes we are in a buffer visiting a .DVI file.
Previews those contents as text and nukes the buffer
visiting the DVI file. 

------------------------------------------------------------

** emacspeak-wizards-dvi-mode Major mode for browsing DVI files.


DVI files  are converted to text and previewed using text mode.

This mode runs the hook `emacspeak-wizards-dvi-mode-hook', as the final step
during initialization.

key             binding
---             -------

 

------------------------------------------------------------

** emacspeak-wizards-edit-file-as-root Edit file as root using sudo vi.
See /etc/sudoers for how to set up sudo. 

------------------------------------------------------------

** emacspeak-wizards-end-of-word move to end of word 

------------------------------------------------------------

** emacspeak-wizards-find-emacspeak-source Like find-file, but binds default-directory to emacspeak-directory. 

------------------------------------------------------------

** emacspeak-wizards-find-grep Run compile using find and grep.
Interactive  arguments specify filename pattern and search pattern. 

------------------------------------------------------------

** emacspeak-wizards-find-longest-line-in-region Find longest line in region.
Moves to the longest line when called interactively. 

------------------------------------------------------------

** emacspeak-wizards-find-longest-paragraph-in-region Find longest paragraph in region.
Moves to the longest paragraph when called interactively. 

------------------------------------------------------------

** emacspeak-wizards-find-shortest-line-in-region Find shortest line in region.
Moves to the shortest line when called interactively. 

------------------------------------------------------------

** emacspeak-wizards-finder-find Run find-dired on specified switches after prompting for the
directory to where find is to be launched. 

------------------------------------------------------------

** emacspeak-wizards-finder-mode Emacspeak Finder



This mode runs the hook `emacspeak-wizards-finder-mode-hook', as the final step
during initialization.

key             binding
---             -------

 

------------------------------------------------------------

** emacspeak-wizards-fix-read-only-text Nuke read-only property on text range. 

------------------------------------------------------------

** emacspeak-wizards-fix-typo Search and replace  recursively in all files with extension `ext'
for `word' and replace it with correction.
Use with caution. 

------------------------------------------------------------

** emacspeak-wizards-generate-finder Generate a widget-enabled finder wizard. 

------------------------------------------------------------

** emacspeak-wizards-generate-voice-sampler Generate a buffer that shows a sample line in all the ACSS settings
for the current voice family. 

------------------------------------------------------------

** emacspeak-wizards-get-table-content-from-file Extract table specified by depth and count from HTML
content at file.
Extracted content is sent to STDOUT. 

------------------------------------------------------------

** emacspeak-wizards-get-table-content-from-url Extract table specified by depth and count from HTML
content at URL.
Extracted content is placed as a csv file in task.csv. 

------------------------------------------------------------

** emacspeak-wizards-google-hits Filter Google results after performing search to show just the
hits. 

------------------------------------------------------------

** emacspeak-wizards-google-transcode View Web through Google Transcoder. 

------------------------------------------------------------

** emacspeak-wizards-how-many-matches If you define a file local variable
called `emacspeak-occur-pattern' that holds a regular expression
that matches  lines of interest, you can use this command to conveniently
run `how-many' to count  matching header lines.
With interactive prefix arg, prompts for and remembers the file local pattern. 

------------------------------------------------------------

** emacspeak-wizards-i810-display-status Show display status on thinkpads using i810switch. 

------------------------------------------------------------

** emacspeak-wizards-js Run JS in a comint sub-process. 

------------------------------------------------------------

** emacspeak-wizards-lacheck-buffer-file   

------------------------------------------------------------

** emacspeak-wizards-load-current-file   

------------------------------------------------------------

** emacspeak-wizards-move-and-speak Speaks a chunk of text bounded by point and a target position.
Target position is specified using a navigation command and a
count that specifies how many times to execute that command
first.  Point is left at the target position.  Interactively,
command is specified by pressing the key that invokes the
command. 

------------------------------------------------------------

** emacspeak-wizards-next-interactive-defun Move point to the next interactive defun 

------------------------------------------------------------

** emacspeak-wizards-occur-header-lines If you define a file local variable called
`emacspeak-occur-pattern' that holds a regular expression that
matches header lines, you can use this command to conveniently
run `occur' to find matching header lines. With prefix arg,
prompts for and sets value of the file local pattern. 

------------------------------------------------------------

** emacspeak-wizards-pdf-open Open pdf file as text. 

------------------------------------------------------------

** emacspeak-wizards-popup-input-buffer Provide an input buffer in a specified mode. 

------------------------------------------------------------

** emacspeak-wizards-portfolio-quotes Bring up detailed stock quotes for portfolio specified by
emacspeak-wizards-personal-portfolio. 

------------------------------------------------------------

** emacspeak-wizards-ppp-toggle Bring up or bring down ppp. 

------------------------------------------------------------

** emacspeak-wizards-ppt-display Called to set up preview of an PPT file.
Assumes we are in a buffer visiting a .ppt file.
Previews those contents as HTML and nukes the buffer
visiting the ppt file. 

------------------------------------------------------------

** emacspeak-wizards-ppt-mode Major mode for browsing PPT slides.


PPT files  are converted to HTML and previewed using a browser.

In addition to any hooks its parent mode `text-mode' might have run,
this mode runs the hook `emacspeak-wizards-ppt-mode-hook', as the final step
during initialization.

key             binding
---             -------

 

------------------------------------------------------------

** emacspeak-wizards-refresh-shell-history Refresh shell history from disk.
This is for use in conjunction with bash to allow multiple emacs
  shell buffers to   share history information. 

------------------------------------------------------------

** emacspeak-wizards-rivo Rivo wizard.
Prompts for relevant information and schedules a rivo job using
  UNIX At scheduling facility.
RIVO is implemented by rivo.pl ---
 a Perl script  that can be used to launch streaming media and record
   streaming media for  a specified duration. 

------------------------------------------------------------

** emacspeak-wizards-rpm-query-in-dired Run rpm -qi on current dired entry. 

------------------------------------------------------------

** emacspeak-wizards-shell-toggle	Key Sequence: control e <f11> 

 Switch to the shell buffer and cd to
 the directory of the current buffer. 

------------------------------------------------------------

** emacspeak-wizards-show-commentary Display commentary. Default is to display commentary from current buffer. 

------------------------------------------------------------

** emacspeak-wizards-show-environment-variable Display value of specified environment variable. 

------------------------------------------------------------

** emacspeak-wizards-show-eval-result	Key Sequence: control e &   META ESCAPE : 

 Convenience command to pretty-print and view Lisp evaluation results. 

------------------------------------------------------------

** emacspeak-wizards-show-face Show salient properties of specified face. 

------------------------------------------------------------

** emacspeak-wizards-show-memory-used Convenience command to view state of memory used in this session so far. 

------------------------------------------------------------

** emacspeak-wizards-speak-iso-datetime Make ISO date-time speech friendly. 

------------------------------------------------------------

** emacspeak-wizards-spot-words Searches recursively in all files with extension `ext'
for `word' and displays hits in a compilation buffer. 

------------------------------------------------------------

** emacspeak-wizards-squeeze-blanks Squeeze multiple blank lines in current buffer. 

------------------------------------------------------------

** emacspeak-wizards-terminal Launch terminal and rename buffer appropriately. 

------------------------------------------------------------

** emacspeak-wizards-tex-tie-current-word   

------------------------------------------------------------

** emacspeak-wizards-thanks-mail-signature insert thanks , --Raman at the end of mail message 

------------------------------------------------------------

** emacspeak-wizards-toggle-mm-dd-yyyy-date-pronouncer Toggle pronunciation of mm-dd-yyyy dates. 

------------------------------------------------------------

** emacspeak-wizards-tpctl-display-status Show display status on thinkpads using tpctl. 

------------------------------------------------------------

** emacspeak-wizards-tramp-open-location Open specified tramp location.
Location is specified by name. 

------------------------------------------------------------

** emacspeak-wizards-unhex-uri UnEscape URI 

------------------------------------------------------------

** emacspeak-wizards-units Run units in a comint sub-process. 

------------------------------------------------------------

** emacspeak-wizards-use-w3-or-w3m Alternates between using W3 and W3M for browse-url. 

------------------------------------------------------------

** emacspeak-wizards-vc-n Accelerator for VC viewer. 

------------------------------------------------------------

** emacspeak-wizards-vc-viewer View contents of specified virtual console. 

------------------------------------------------------------

** emacspeak-wizards-vc-viewer-mode Major mode for interactively viewing virtual console contents.


key             binding
---             -------

C-l		emacspeak-wizards-vc-viewer-refresh



This mode runs the hook `emacspeak-wizards-vc-viewer-mode-hook', as the final step
during initialization. 

------------------------------------------------------------

** emacspeak-wizards-vc-viewer-refresh Refresh view of VC we're viewing. 

------------------------------------------------------------

** emacspeak-wizards-vi-as-su-file Launch sudo vi on specified file in a terminal. 

------------------------------------------------------------

** emacspeak-wizards-voice-sampler Read a personality  and apply it to the current line. 

------------------------------------------------------------

** emacspeak-wizards-vpn-toggle Bring up or bring down vpn. 

------------------------------------------------------------

** emacspeak-wizards-xl-display Called to set up preview of an XL file.
Assumes we are in a buffer visiting a .xls file.
Previews those contents as HTML and nukes the buffer
visiting the xls file. 

------------------------------------------------------------

** emacspeak-wizards-xl-mode Major mode for browsing XL spreadsheets.


XL Sheets are converted to HTML and previewed using a browser.

In addition to any hooks its parent mode `text-mode' might have run,
this mode runs the hook `emacspeak-wizards-xl-mode-hook', as the final step
during initialization.

key             binding
---             -------

 

------------------------------------------------------------

** emacspeak-xslt-view Browse URL with specified XSL style. 

------------------------------------------------------------

** emacspeak-xslt-view-region Browse XML region with specified XSL style. 

------------------------------------------------------------

** emacspeak-xslt-view-xml Browse XML URL with specified XSL style. 

------------------------------------------------------------

** emacspeak-describe-emacspeak	Key Sequence: control h control e   <f1> control e   <help> control e 

 Give a brief overview of emacspeak. 

------------------------------------------------------------

** emacspeak-submit-bug	Key Sequence: control e CONTROL meta b 

 Function to submit a bug to the programs maintainer. 

------------------------------------------------------------

** voice-setup-list-voices Show all defined voice-face mappings  in a help buffer.
Sample text to use comes from variable
  `voice-setup-sample-text'.  

------------------------------------------------------------

** voice-setup-toggle-silence-personality	Key Sequence: control e meta q 

 Toggle audibility of personality under point  .
If personality at point is currently audible, its
face->personality map is cached in a buffer local variable, and
its face->personality map is replaced by face->inaudible.  If
personality at point is inaudible, and there is a cached value,
then the original face->personality mapping is restored.  In
either case, the buffer is refontified to have the new mapping
take effect. 

------------------------------------------------------------

** cd-tool	Key Sequence: control e DEL 

 Front-end to CDTool.
Bind this function to a convenient key-
Emacspeak users automatically have
this bound to <DEL> in the emacspeak keymap.

Key     Action
---     ------

+       Next Track
-       Previous Track
SPC     Pause or Resume
e       Eject
=       Shuffle
i       CD Info
p       Play
s       Stop
t       track
c       clip
cap C   Save clip to disk

(fn) 

------------------------------------------------------------

** emacspeak-amphetadesk Open amphetadesk.
Interactive prefix-arg use-opml opens the myChannels.opml file.

(fn &optional USE-OPML) 

------------------------------------------------------------

** emacspeak-amphetadesk-quick-add Quick add URL to Amphetadesk by prompting for URL.

(fn URL) 

------------------------------------------------------------

** emacspeak-aumix-reset Reset to default audio settings.

(fn) 

------------------------------------------------------------

** emacspeak-aumix-volume-decrease Decrease overall volume. 

(fn &optional GAIN) 

------------------------------------------------------------

** emacspeak-aumix-volume-increase Increase overall volume. 

(fn &optional GAIN) 

------------------------------------------------------------

** emacspeak-aumix-wave-decrease Decrease volume of wave output. 

(fn &optional GAIN) 

------------------------------------------------------------

** emacspeak-aumix-wave-increase Increase volume of wave output. 

(fn &optional GAIN) 

------------------------------------------------------------

** emacspeak-appt-repeat-announcement	Key Sequence: control e  cap A  

 Speaks the most recently displayed appointment message if any.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-define-outline-pattern Define persistent outline regexp for this book.

(fn REGEXP) 

------------------------------------------------------------

** emacspeak-daisy-mark-position-in-content-under-point Mark current position in displayed content.
No-op if content under point is not currently displayed.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-next-line Move to next line.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-open-book	Key Sequence: control e control b 

 Open Digital Talking Book specified by navigation file filename.

This is the main entry point to the  Emacspeak Daisy reader.
Opening a Daisy navigation file (.ncx file) results in a
navigation buffer that can be used to browse and read the book.

(fn FILENAME) 

------------------------------------------------------------

** emacspeak-daisy-play-audio-under-point Play audio clip under point.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-play-content-under-point Play SMIL content  under point.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-play-page-range Play pages in specified page range.

(fn START END) 

------------------------------------------------------------

** emacspeak-daisy-previous-line Move to previous line.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-save-bookmarks Save bookmarks for current book.

(fn) 

------------------------------------------------------------

** emacspeak-daisy-stop-audio Stop audio.

(fn) 

------------------------------------------------------------

** emacspeak-filtertext	Key Sequence: control e ^ 

 Copy over text in region to special filtertext buffer in
preparation for interactively filtering text. 

(fn START END) 

------------------------------------------------------------

** emacspeak-filtertext-revert Revert to original text.

(fn) 

------------------------------------------------------------

** emacspeak-firevox Creates FireVox interaction.

(fn) 

------------------------------------------------------------

** emacspeak-firevox-read-next Read next item on page.

(fn) 

------------------------------------------------------------

** emacspeak-firevox-read-parent Read parent node.

(fn) 

------------------------------------------------------------

** emacspeak-firevox-read-previous Read next item on page.

(fn) 

------------------------------------------------------------

** emacspeak-firevox-websearch Perform Websearch via the Firefox URL bar.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-forms-find-file Visit a forms file

(fn FILENAME) 

------------------------------------------------------------

** emacspeak-gridtext-apply Apply grid to region.

(fn START END GRID) 

------------------------------------------------------------

** emacspeak-gridtext-load Load saved grid settings.

(fn FILE) 

------------------------------------------------------------

** emacspeak-gridtext-save Save out grid settings.

(fn FILE) 

------------------------------------------------------------

** emacspeak-hide-or-expose-all-blocks Hide or expose all blocks in buffer.

(fn) 

------------------------------------------------------------

** emacspeak-hide-or-expose-block	Key Sequence: control e j 

 Hide or expose a block of text.
This command either hides or exposes a block of text
starting on the current line.  A block of text is defined as
a portion of the buffer in which all lines start with a
common PREFIX.  Optional interactive prefix arg causes all
blocks in current buffer to be hidden or exposed.

(fn &optional PREFIX) 

------------------------------------------------------------

** emacspeak-hide-speak-block-sans-prefix	Key Sequence: control e control j 

 Speaks current block after stripping its prefix.
If the current block is not hidden, it first hides it.
This is useful because as you locate blocks, you can invoke this
command to listen to the block,
and when you have heard enough navigate easily  to move past the block.

(fn) 

------------------------------------------------------------

** emacspeak-imenu-goto-next-index-position Goto the next index position in current buffer

(fn) 

------------------------------------------------------------

** emacspeak-imenu-goto-previous-index-position Goto the previous index position in current buffer

(fn) 

------------------------------------------------------------

** emacspeak-info-wizard	Key Sequence: control h TAB   <f1> TAB   <help> TAB 

 Read a node spec from the minibuffer and launch
Info-goto-node.
See documentation for command `Info-goto-node' for details on
node-spec.

(fn NODE-SPEC) 

------------------------------------------------------------

** emacspeak-jawbreaker Opens JawBreaker game in Firefox.

(fn) 

------------------------------------------------------------

** emacspeak-m-player Play specified resource using m-player.
Optional prefix argument play-list interprets resource as a play-list.
Resource is a media resource or playlist containing media resources.
The player is placed in a buffer in emacspeak-m-player-mode.

(fn RESOURCE &optional PLAY-LIST) 

------------------------------------------------------------

** emacspeak-m-player-get-length Display length of track in seconds.

(fn) 

------------------------------------------------------------

** emacspeak-m-player-volume-down Decrease volume.

(fn) 

------------------------------------------------------------

** emacspeak-m-player-volume-up Increase volume.

(fn) 

------------------------------------------------------------

** emacspeak-m-player-youtube-player Use youtube-dl and mplayer to stream YouTube content.

(fn URL) 

------------------------------------------------------------

** emacspeak-multimedia	Key Sequence: control e ; 

 Start or control Emacspeak multimedia player.

(fn) 

------------------------------------------------------------

** emacspeak-madplay Play specified resource using madplay.
Resource is an  MP3 file or directory containing mp3 files.
The player is placed in a buffer in emacspeak-madplay-mode.

(fn RESOURCE) 

------------------------------------------------------------

** emacspeak-madplay-madplay-call-command Call appropriate madplay command.

(fn) 

------------------------------------------------------------

** emacspeak-madplay-madplay-command Execute Madplay command.

(fn CHAR) 

------------------------------------------------------------

** emacspeak-moz-browse-current Browse current node.

(fn) 

------------------------------------------------------------

** emacspeak-moz-browser-back Move back in history.

(fn) 

------------------------------------------------------------

** emacspeak-moz-browser-forward Move forward in history.

(fn) 

------------------------------------------------------------

** emacspeak-moz-close-tab-or-browser Close tab, or browser when one tab left.

(fn) 

------------------------------------------------------------

** emacspeak-moz-down Go Down a level and browse.

(fn) 

------------------------------------------------------------

** emacspeak-moz-eval-expression Send expression to Moz.

(fn EXP) 

------------------------------------------------------------

** emacspeak-moz-eval-expression-and-browse Send expression to Moz, get output, and browse it in Emacs.

(fn EXP) 

------------------------------------------------------------

** emacspeak-moz-eval-expression-and-go Send expression to Moz and switch to it.

(fn EXP) 

------------------------------------------------------------

** emacspeak-moz-filter-and-browse Browse document filtered by XPath filter.

(fn XPATH) 

------------------------------------------------------------

** emacspeak-moz-goto-url Make Firefox used by our repl Go to the specified URL.

(fn URL) 

------------------------------------------------------------

** emacspeak-moz-goto-url-at-point Make Firefox used by our repl Go to url under point.

(fn) 

------------------------------------------------------------

** emacspeak-moz-id-browse Browse node having specified id.

(fn ID) 

------------------------------------------------------------

** emacspeak-moz-inspect Inspect specified object.

(fn WHAT) 

------------------------------------------------------------

** emacspeak-moz-jump Jump to specified index in history.

(fn INDEX) 

------------------------------------------------------------

** emacspeak-moz-left Go left and browse.

(fn) 

------------------------------------------------------------

** emacspeak-moz-locate-and-browse Browse document filtered by element locator.

(fn ELEMENT) 

------------------------------------------------------------

** emacspeak-moz-refresh Reload document.

(fn) 

------------------------------------------------------------

** emacspeak-moz-right Go right and browse.

(fn) 

------------------------------------------------------------

** emacspeak-moz-search Search for pattern in current context.

(fn PATTERN) 

------------------------------------------------------------

** emacspeak-moz-up Go Up a level and browse.

(fn) 

------------------------------------------------------------

** emacspeak-moz-visit-next-and-browse Asks visitor to go  forward and browses the result.

(fn) 

------------------------------------------------------------

** emacspeak-moz-visit-previous-and-browse Asks visitor to go  backward and browses the result.

(fn) 

------------------------------------------------------------

** emacspeak-ocr	Key Sequence: control e control o 

 An OCR front-end for the Emacspeak desktop.  

Page image is acquired using tools from the SANE package.
The acquired image is run through the OCR engine if one is
available, and the results placed in a buffer that is
suitable for browsing the results.

For detailed help, invoke command emacspeak-ocr bound to
C-e C-o to launch emacspeak-ocr-mode, and press
`?' to display mode-specific help for emacspeak-ocr-mode.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-backward-page Like backward page, but tracks page number of current document.

(fn &optional COUNT-IGNORED) 

------------------------------------------------------------

** emacspeak-ocr-customize Customize OCR settings.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-forward-page Like forward page, but tracks page number of current document.

(fn &optional COUNT-IGNORED) 

------------------------------------------------------------

** emacspeak-ocr-name-document Name document being scanned in the current OCR buffer.
Pick a short but meaningful name.

(fn NAME) 

------------------------------------------------------------

** emacspeak-ocr-open-working-directory Launch dired on OCR working directory.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-page Move to specified page.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-read-current-page Speaks current page.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-recognize-image Run OCR engine on current image.
Prompts for image file if file corresponding to the expected
`current page' is not found.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-save-current-page Writes out recognized text from current page
to an appropriately named file.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-scan-and-recognize Scan in a page and run OCR engine on it.
Use this command once you've verified that the separate
steps of acquiring an image and running the OCR engine work
correctly by themselves.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-scan-image Acquire page image.

(fn) 

------------------------------------------------------------

** emacspeak-ocr-scan-photo Scan in a photograph.
The scanned image is converted to JPEG.

(fn &optional METADATA) 

------------------------------------------------------------

** emacspeak-ocr-set-compress-image-options Interactively update  image compression options.
Prompts with current setting in the minibuffer.
Setting persists for current Emacs session.

(fn SETTING) 

------------------------------------------------------------

** emacspeak-ocr-set-scan-image-options Interactively update scan image options.
Prompts with current setting in the minibuffer.
Setting persists for current Emacs session.

(fn SETTING) 

------------------------------------------------------------

** emacspeak-ocr-write-document Writes out recognized text from all pages in current document.

(fn) 

------------------------------------------------------------

** emacspeak-org-popup-input Pops up an org input area.

(fn) 

------------------------------------------------------------

** emacspeak-piglets-enter Send enter to Firefox.

(fn) 

------------------------------------------------------------

** emacspeak-piglets-key Send last keypress to Firefox.

(fn) 

------------------------------------------------------------

** emacspeak-piglets-keypress Send keypress to Firefox.

(fn C) 

------------------------------------------------------------

** emacspeak-piglets-silence Stop speech output from FireVox.

(fn) 

------------------------------------------------------------

** emacspeak-piglets-tab Send TAB to Firefox.

(fn) 

------------------------------------------------------------

** emacspeak-piglets-tts-init Start TTS  engine for Piglets.

(fn) 

------------------------------------------------------------

** emacspeak-realaudio	Key Sequence: control e : 

 Start or control streaming audio including MP3 and
realaudio.  If using `TRPlayer' as the player, accepts
trplayer control commands if a stream is already playing.
Otherwise, the playing stream is simply stopped.  If no
stream is playing, this command prompts for a realaudio
resource.  Realaudio resources can be specified either as a
Realaudio URL, the location of a local Realaudio file, or as
the name of a local Realaudio metafile. Realaudio resources
you have played in this session are available in the
minibuffer history.  The default is to play the resource you
played most recently. Emacspeak uses the contents of the
directory specified by variable
emacspeak-realaudio-shortcuts-directory to offer a set of
completions. Hit space to use this completion list.

If using TRPlayer, you can either give one-shot commands
using command emacspeak-realaudio available from anywhere on
the audio desktop as `C-e :'.
Alternatively, switch to buffer *realaudio* using
`C-e :;' if you wish to issue many
navigation commands.  Note that buffer *realaudio* uses a
special major mode that provides the various navigation
commands via single keystrokes.

(fn &optional IGNORED) 

------------------------------------------------------------

** emacspeak-realaudio-browse Browse RAM file before playing the selected component.

(fn RAMFILE &optional START-TIME) 

------------------------------------------------------------

** emacspeak-realaudio-get-current-time-in-seconds Return current time in seconds.

(fn) 

------------------------------------------------------------

** emacspeak-realaudio-play Play a realaudio stream.  Uses files from your Realaudio
shortcuts directory for completion.  See documentation for
user configurable variable emacspeak-realaudio-shortcuts-directory. 

(fn RESOURCE &optional PLAY-LIST) 

------------------------------------------------------------

** emacspeak-realaudio-set-end-mark Set end mark. Default is to set marker to current play time.
Mark is specified in seconds.

(fn &optional MARK-TIME) 

------------------------------------------------------------

** emacspeak-realaudio-set-start-mark Set start mark. Default is to set marker to current play time.
Mark is specified in seconds.

(fn &optional MARK-TIME) 

------------------------------------------------------------

** emacspeak-realaudio-write-mp3-clip Writes specified clip from current mp3 stream.
Prompts for start and end times as well as file  to save the clippi

(fn START END FILE) 

------------------------------------------------------------

** emacspeak-remote-connect-to-server	Key Sequence: control e meta r 

 Connect to and start using remote speech server running on host host
and listening on port port.  Host is the hostname of the remote
server, typically the desktop machine.  Port is the tcp port that that
host is listening on for speech requests.

(fn HOST PORT) 

------------------------------------------------------------

** emacspeak-remote-edit-current-remote-hostname Interactively set up where we came from.
Value is persisted for use with ssh servers.

(fn) 

------------------------------------------------------------

** emacspeak-remote-home Open ssh session to where we came from.
Uses value returned by `emacspeak-remote-get-current-remote-hostname'.

(fn) 

------------------------------------------------------------

** emacspeak-remote-quick-connect-to-server Connect to remote server.
Does not prompt for host or port, but quietly uses the
guesses that appear as defaults when prompting.
Use this once you are sure the guesses are usually correct.

(fn) 

------------------------------------------------------------

** emacspeak-remote-ssh-to-server Open ssh session to where we came from.

(fn LOGIN HOST PORT) 

------------------------------------------------------------

** emacspeak-tabulate-region	Key Sequence: control e i 

 Voicifies the white-space of a table if one found.  Optional interactive prefix
arg mark-fields specifies if the header row information is used to mark fields
in the white-space.

(fn START END &optional MARK-FIELDS) 

------------------------------------------------------------

** emacspeak-tapestry-describe-tapestry	Key Sequence: control e meta t 

 Describe the current layout of visible buffers in current frame.
Use interactive prefix arg to get coordinate positions of the
displayed buffers.

(fn &optional DETAILS) 

------------------------------------------------------------

** emacspeak-tapestry-select-window-by-name	Key Sequence: control e  cap W  

 Select window by the name of the buffer it displays.
This is useful when using modes like ECB or the new GDB UI where
  you want to preserve the window layout 
but quickly switch to a window by name.

(fn BUFFER-NAME) 

------------------------------------------------------------

** emacspeak-url-template-fetch	Key Sequence: control e u 

 Fetch a pre-defined resource.
Use Emacs completion to obtain a list of available resources.
Resources typically prompt for the relevant information
before completing the request.
Optional interactive prefix arg displays documentation for specified resource.

(fn &optional DOCUMENTATION) 

------------------------------------------------------------

** emacspeak-url-template-load Load URL template resources from specified location.

(fn FILE) 

------------------------------------------------------------

** emacspeak-w3-curl-url-under-point Display contents of URL under point using Curl and W3.  The
document is displayed in a separate buffer. 

(fn) 

------------------------------------------------------------

** emacspeak-w3m-preview-this-buffer Preview this buffer in w3m.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-accessible-google Google Accessible Search -- see http://labs.google.com/accessible

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-alltheweb-search Perform an AllTheWeb  search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-altavista-search Perform an Altavista search

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-amazon-search Amazon search.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-ask-jeeves Ask Jeeves for the answer.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-bbc-search Search BBC archives.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-biblio-search Search Computer Science Bibliographies.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-blinkx-search BlinkX RSS Generator.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-britannica-search Search Encyclopedia Britannica.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-citeseer-search Perform a CiteSeer search. 

(fn TERM) 

------------------------------------------------------------

** emacspeak-websearch-company-news Perform an company news lookup.
Retrieves company news, research, profile, insider trades,  or upgrades/downgrades.

(fn TICKER &optional PREFIX) 

------------------------------------------------------------

** emacspeak-websearch-cpan-search Search CPAN  Comprehensive Perl Archive Network   Site. 

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-ctan-search Search CTAN Comprehensive TeX Archive Network   Site. 

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-dictionary-hypertext-webster-search Search the Webster Dictionary.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-dispatch	Key Sequence: control e ? 

 Launches specific websearch queries.
Press `?' to list available search engines.
Once selected, the selected searcher prompts for additional information as appropriate.
When using supported browsers,  this interface attempts to speak the most relevant information on the result page.

(fn &optional PREFIX) 

------------------------------------------------------------

** emacspeak-websearch-ebay-search Ebay search.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-emaps-search Perform EmapSpeak search.
Query is a Google Maps query in plain English.
Interactive prefix arg `use-near' searches near our previously cached  location.

(fn QUERY &optional USE-NEAR) 

------------------------------------------------------------

** emacspeak-websearch-emapspeak-near-my-location Perform search relative to `my-location'.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-exchange-rate-convertor Currency convertor.

(fn CONVERSION-SPEC) 

------------------------------------------------------------

** emacspeak-websearch-foldoc-search Perform a FolDoc search. 

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-freshmeat-search Search Freshmeat  Site. 

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-froogle Perform a Froogle search.
Optional interactive  prefix arg local-flag prompts for local
  area in which to search.

(fn QUERY &optional LOCAL-FLAG) 

------------------------------------------------------------

** emacspeak-websearch-google Perform a Google search.
Optional interactive prefix arg `lucky' is equivalent to hitting the
I'm Feeling Lucky button on Google.

(fn QUERY &optional LUCKY) 

------------------------------------------------------------

** emacspeak-websearch-google-advanced Present Google advanced search form simplified for speech interaction.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-google-feeling-lucky Do a I'm Feeling Lucky Google search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-google-mobile Google mobile search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-google-news Invoke Google News url template.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-google-sak Perform a Google query against a specific index.

(fn ENGINE QUERY) 

------------------------------------------------------------

** emacspeak-websearch-google-search-in-date-range Use this from inside the calendar to do Google date-range searches.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-google-specialize Perform a specialized Google search. See the Google site for
  what is possible here:
http://www.google.com/options/specialsearches.html 

(fn SPECIALIZE QUERY) 

------------------------------------------------------------

** emacspeak-websearch-google-usenet-advanced Present Google Usenet advanced search form simplified for speech interaction.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-gutenberg Perform an Gutenberg search

(fn TYPE QUERY) 

------------------------------------------------------------

** emacspeak-websearch-help Displays key mapping used by Emacspeak Websearch.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-map-yahoo-directions-search Get driving directions from Yahoo.
With optional interactive prefix arg MAP shows the location map instead.

(fn QUERY &optional MAP) 

------------------------------------------------------------

** emacspeak-websearch-merriam-webster-search Search the Merriam Webster Dictionary.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-my-rss-search My RSS search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-news-yahoo Perform an Yahoo News search.
Optional prefix arg no-rss scrapes information from HTML.

(fn QUERY &optional NO-RSS) 

------------------------------------------------------------

** emacspeak-websearch-open-directory-search Perform an Open Directory search

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-people-yahoo Perform an Yahoo  people search

(fn) 

------------------------------------------------------------

** emacspeak-websearch-podscope Perform a PodScope search to locate podcasts.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-podzinger-search Podzinger RSS Generator.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-quotes-yahoo-search Perform a Quotes Yahoo .
Default tickers to look up is taken from variable
emacspeak-websearch-personal-portfolio.
Default is to present the data in emacspeak's table browsing
mode --optional interactive prefix arg
causes data to be displayed as  a Web page.
You can customize the defaults by setting variable
emacspeak-websearch-quotes-yahoo-options to an appropriate string.

(fn QUERY &optional PREFIX) 

------------------------------------------------------------

** emacspeak-websearch-recorded-books-search Present advanced search form for recorded books.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-rpm-find Search RPM  catalog  site.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-shoutcast-search Shoutcast search.

(fn) 

------------------------------------------------------------

** emacspeak-websearch-software-search Search SourceForge, Freshmeat and other sites. 

(fn) 

------------------------------------------------------------

** emacspeak-websearch-sourceforge-search Search SourceForge Site. 

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-swik-search Search swik software community site.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-technorati Perform a Technorati tag search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-teoma Perform an Teoma  search.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-usenet	Key Sequence: control e  cap U  

 Prompt and browse a Usenet newsgroup.
Optional interactive prefix arg results in prompting for a search term.

(fn GROUP &optional PREFIX) 

------------------------------------------------------------

** emacspeak-websearch-usenet-search Search a Usenet newsgroup.

(fn GROUP) 

------------------------------------------------------------

** emacspeak-websearch-w3c-search Search the W3C Site.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-weather Get weather forecast for specified zip code.

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-wikipedia-search Search Wikipedia

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-yahoo Perform an Yahoo  search

(fn QUERY) 

------------------------------------------------------------

** emacspeak-websearch-yahoo-exchange-rate-convertor Currency convertor.

(fn CONVERSION-SPEC) 

------------------------------------------------------------

** emacspeak-websearch-yahoo-historical-chart Look up historical stock data.
Optional second arg as-html processes the results as HTML rather than data.

(fn TICKER &optional AS-HTML) 

------------------------------------------------------------

** emacspeak-xml-shell Start Xml-Shell on contents of system-id.

(fn SYSTEM-ID) 

------------------------------------------------------------

** emacspeak-zinf Play specified resource using zinf.
Resource is an  MP3 file or m3u playlist.
The player is placed in a buffer in emacspeak-zinf-mode.

(fn RESOURCE) 

------------------------------------------------------------

** emacspeak-zinf-zinf-call-command Call appropriate zinf command.

(fn) 

------------------------------------------------------------

** emacspeak-zinf-zinf-command Execute Zinf command.

(fn CHAR) 

  

Local variables:
 mode: outline
paragraph-separate: "[ ]*$"
end: