This file is indexed.

/usr/share/snd/lint.scm is in snd 16.1-5.

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
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
;;; lint for s7 scheme
;;;
;;; (lint "file.scm") checks file.scm for infelicities
;;; to control the kinds of checks, set the variables below.

(provide 'lint.scm)
(require stuff.scm)
;(require write.scm)

(if (provided? 'pure-s7)
    (begin
      (define (make-polar mag ang) (complex (* mag (cos ang)) (* mag (sin ang))))

      (define (memq a b) (member a b eq?))
      (define (memv a b) (member a b eqv?))
      (define (assq a b) (assoc a b eq?))
      (define (assv a b) (assoc a b eqv?))

      (define (char-ci=? . chars) (apply char=? (map char-upcase chars)))
      (define (char-ci<=? . chars) (apply char<=? (map char-upcase chars)))
      (define (char-ci>=? . chars) (apply char>=? (map char-upcase chars)))
      (define (char-ci<? . chars) (apply char<? (map char-upcase chars)))
      (define (char-ci>? . chars) (apply char>? (map char-upcase chars)))

      (define (string-ci=? . strs) (apply string=? (map string-upcase strs)))
      (define (string-ci<=? . strs) (apply string<=? (map string-upcase strs)))
      (define (string-ci>=? . strs) (apply string>=? (map string-upcase strs)))
      (define (string-ci<? . strs) (apply string<? (map string-upcase strs)))
      (define (string-ci>? . strs) (apply string>? (map string-upcase strs)))

      (define (let->list e)
	(if (let? e)
	    (reverse! (map values e))
	    (error 'wrong-type-arg "let->list argument should be an environment: ~A" str)))
      ))

(define *report-unused-parameters* #f)
(define *report-unused-top-level-functions* #f)
(define *report-multiply-defined-top-level-functions* #f) ; same name defined at top level in more than one file
(define *report-shadowed-variables* #f)
(define *report-minor-stuff* #t)                          ; now obsolete (#t)
(define *report-doc-strings* #f)                          ; report old-style (CL) doc strings

(define *load-file-first* #f)                             ; this will actually load the file, so errors will stop lint
(define start-up-let (rootlet))
(define *current-file* "")
(define *top-level-objects* (make-hash-table))
(define *lint-output-port* *stderr*)

(format *stderr* "loading lint.scm~%")
(set! reader-cond #f)
(define-macro (reader-cond . clauses) `(values))          ; clobber reader-cond to avoid dumb unbound-variable errors


;;; --------------------------------------------------------------------------------
;;; for snd-test.scm


(set! *#readers* 
      (cons (cons #\_ (lambda (str)
			(and (string=? str "__line__")
			     (port-line-number))))
	    *#readers*))

(when (not (provided? 'snd))
  (define defanimal define*)
  (define definstrument define*)
  (define defgenerator define*))


;;; --------------------------------------------------------------------------------


(define lint
  (let ()
    (define (any-real? lst) ; ignore 0.0 and 1.0 in this since they normally work
      (and (pair? lst)
	   (or (and (number? (car lst))
		    (not (rational? (car lst)))
		    (not (= (car lst) 0.0))
		    (not (= (car lst) 1.0)))
	       (any-real? (cdr lst)))))
    
    (define (quoted-undotted-pair? x)
      (and (pair? x)
	   (eq? (car x) 'quote)
	   (pair? (cdr x))
	   (pair? (cadr x))
	   (positive? (length (cadr x)))))

    (define (quoted-null? x)
      (and (pair? x)
	   (eq? (car x) 'quote)
	   (pair? (cdr x))
	   (null? (cadr x))))

    (define (code-constant? x)
      (and (not (symbol? x))
	   (or (not (pair? x))
	       (and (eq? (car x) 'quote)
		    (list? (cdr x)))))) ; was pair?

    (let ((no-side-effect-functions 
	   ;; ideally we'd be able to add functions to this list, perhaps similar to the signatures
	   (let ((ht (make-hash-table)))
	     (for-each
	      (lambda (op) 
		(hash-table-set! ht op #t))
	      '(* + - / < <= = > >= 
		abs acos acosh and angle append aritable? arity ash asin asinh assoc assq assv atan atanh 
		begin boolean=? boolean? byte-vector byte-vector?
		caaaar caaadr caaar caadar caaddr caadr caar cadaar cadadr cadar caddar cadddr caddr cadr
		call-with-input-from-string call-with-input-from-file
		c-pointer c-pointer? c-object? call-with-exit car case catch cdaaar cdaadr cdaar cdadar cdaddr cdadr cdar cddaar cddadr
		cddar cdddar cddddr cdddr cddr cdr ceiling char->integer char-alphabetic? char-ci<=?
		char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? 
		char-position char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<?
		char=? char>=? char>? char? complex complex? cond cons constant? continuation? cos
		cosh curlet current-error-port current-input-port current-output-port cyclic-sequences
		defined? denominator dilambda? do dynamic-wind
		eof-object? eq? equal? eqv? even? exact->inexact exact? exp expt
		float? float-vector float-vector-ref float-vector? floor for-each funclet 
		gcd gensym gensym?
		hash-table hash-table* hash-table-entries hash-table-ref hash-table? help hook-functions
		if imag-part inexact->exact inexact? infinite? inlet input-port? 
		int-vector int-vector-ref int-vector? iterator-at-end? iterator-sequence integer->char
		integer-decode-float integer-length integer? iterator?
		keyword->symbol keyword?
		let->list lcm length let let* let-ref let? letrec letrec* list list->string list->vector list-ref
		list-tail list? log logand logbit? logior lognot logxor
		macro? magnitude make-byte-vector make-float-vector make-int-vector make-hash-table make-hook make-iterator make-keyword make-list make-polar
		make-rectangular make-shared-vector make-string make-vector map max member memq memv min modulo morally-equal?
		nan? negative? not null? number->string number? numerator
		object->string odd? openlet? or outlet output-port? owlet
		pair-line-number pair? peek-char port-closed? port-filename port-line-number positive? procedure-documentation
		procedure-setter procedure-signature procedure-source procedure? proper-list? provided?
		quasiquote quote quotient
		random-state random-state->list random-state? rational? rationalize real-part real? remainder reverse rootlet round
		s7-version sequence? sin sinh sqrt stacktrace string string->list string->number string->symbol string-append 
		string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-downcase string-length
		string-position string-ref string-upcase string<=? string<? string=? string>=? string>? string?
		sublet substring symbol symbol->dynamic-value symbol->keyword symbol->string symbol->value symbol=? symbol?
		tan tanh truncate
		unless unlet
		vector vector-append vector->list vector-dimensions vector-length vector-ref vector?
		when with-baffle with-let with-input-from-file with-input-from-string with-output-to-string
		zero?))
	     ;; do not include file-exists? or directory?
	     ht))

	  (deprecated-ops '((global-environment . rootlet)
			    (current-environment . curlet)
			    (make-procedure-with-setter . dilambda)
			    (procedure-with-setter? . dilambda?)
			    (make-random-state . random-state)
			    ;(make-rectangular . complex)

			    (data-format . sample-type)
			    (mus-sound-data-format . mus-sound-sample-type)
			    (mus-data-format-name . mus-sample-type-name)
			    (mus-data-format->string . mus-sample-type->string)))

	  (numeric-ops (let ((h (make-hash-table)))
			 (for-each
			  (lambda (op)
			    (set! (h op) #t))
			  '(+ * - / 
			      sin cos tan asin acos atan sinh cosh tanh asinh acosh atanh 
			      log exp expt sqrt make-polar complex
			      imag-part real-part abs magnitude angle max min exact->inexact
			      modulo remainder quotient lcm gcd
			      rationalize inexact->exact random
			      logior lognot logxor logand numerator denominator 
			      floor round truncate ceiling ash))
			 h))

	  (repeated-args-table (let ((h (make-hash-table)))
				 (for-each
				  (lambda (op)
				    (set! (h op) #t))
				  '(= / max min < > <= >= - quotient remainder modulo and or
				      string=? string<=? string>=? string<? string>?
				      char=? char<=? char>=? char<? char>?
				      boolean=? symbol=?))
				 h))
	  
	  (repeated-args-table-2 (let ((h (make-hash-table)))
				   (for-each
				    (lambda (op)
				      (set! (h op) #t))
				    '(= max min < > <= >= and or
					string=? string<=? string>=? string<? string>?
					char=? char<=? char>=? char<? char>?
					boolean=? symbol=?))
				   h))

	  (syntaces (let ((h (make-hash-table)))
		      (for-each
		       (lambda (op)
			 (set! (h op) #t))
		       '(quote if begin let let* letrec letrec* cond case or and do set! unless when
			 with-let with-baffle
			 lambda lambda* define define* 
			 define-macro define-macro* define-bacro define-bacro* 
			 define-constant define-expansion))
		      h))
	  
	  (format-control-char (let ((chars (make-vector 256 #f)))
				 (for-each
				  (lambda (c)
				    (vector-set! chars (char->integer c) #t))
				  '(#\A #\S #\C #\F #\E #\G #\O #\D #\B #\X #\, #\{ #\} #\@ #\P #\*
				    #\a #\s #\c #\f #\e #\g #\o #\d #\b #\x #\p #\N #\n #\W #\w #\v #\V
				    #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9))
				 chars))

	  (selector-types '(#t symbol? char? boolean? integer? rational? real? complex? number?))
	  (outport #t)
	  (loaded-files #f)
	  (globals #f)
	  (*e* (curlet))
	  (other-identifiers #f)
	  (quote-warnings 0)
	  (last-simplify-boolean-line-number -1)
	  (last-simplify-numeric-line-number -1)
	  (last-checker-line-number -1)
	  (line-number -1))
#|
      (define var-name (dilambda (lambda (v) (v :name)) (lambda (v x) (set! (v :name) x))))
      (define var-ref (dilambda (lambda (v) (v :ref)) (lambda (v x) (set! (v :ref) x))))
      (define var-set (dilambda (lambda (v) (v :set)) (lambda (v x) (set! (v :set) x))))
      (define var-type (dilambda (lambda (v) (v :type)) (lambda (v x) (set! (v :type) x))))
      (define var-value (dilambda (lambda (v) (v :value)) (lambda (v x) (set! (v :value) x))))
      (define* (make-var name ref set fnc typ val new)
        (inlet :var :var :name name :ref ref :set set :fnc fnc :type typ :value val :new new))
      (define (var? v) (and (let? v) (eq? (v :var) :var)))
      ;; but need var-member -- (assoc x y var-name)?

      ;; var-type is set in make-var in do and the various lets, so new needs closure-type? and set var-type to procedure? or macro? etc
      ;;   define et al could also set the type
|#

      (define var? pair?)
      (define var-member assq)
      (define var-name car)
      (define var-ref cadr)
      (define var-set caddr)
      (define (set-cadr! v val) (list-set! v 1 val))
      (define (set-caddr! v val) (list-set! v 2 val))
      (set! (procedure-setter cadr) set-cadr!)
      (set! (procedure-setter caddr) set-caddr!)
      (define var-type (dilambda (lambda (v) (list-ref v 3)) (lambda (v x) (list-set! v 3 x))))
      (define var-value (dilambda (lambda (v) (list-ref v 4)) (lambda (v x) (list-set! v 4 x))))
      ;; (define make-var (lambda* (name ref set typ val :allow-other-keys) (list name ref set typ val)))
      ;;   this :allow-other-keys is protecting us from bizarre keyword uses in non-s7 code.  
      (define var-new (dilambda (lambda (v) (list-ref v 5)) (lambda (v x) (list-set! v 5 x))))

      (define* (make-var name ref set typ val new) 
	;(if new (format *stderr* "~A: ~A~%~%" name new))
	(list name ref set typ val new))

      (define (return-type sym)
	(let ((f (if (symbol? sym) (symbol->value sym *e*) sym)))
	  (and (procedure? f)
	       (let ((sig (procedure-signature f)))
		 (and (pair? sig)
		      (or (eq? (car sig) 'values) ; turn it into #t for now
			  (car sig)))))))         ; this might be undefined in the current context (eg oscil? outside clm)

      (define (->type c)
	(cond ((pair? c)
	       (if (symbol? (car c))
		   (return-type (car c))
		   (or (pair? (car c)) 'pair?)))
	      ((integer? c)	  'integer?)
	      ((rational? c)	  'rational?)
	      ((real? c)	  'real?)
	      ((number? c)	  'number?)
	      ((keyword? c)	  'keyword?)
	      ((symbol? c)	  'symbol?)
	      ((byte-vector? c)   'byte-vector?)
	      ((string? c)	  'string?)
	      ((null? c)	  'null?)
	      ((char? c)	  'char?)
	      ((boolean? c)	  'boolean?)
	      ((float-vector? c)  'float-vector?)
	      ((int-vector? c)	  'int-vector?)
	      ((vector? c)	  'vector?)
	      ((let? c)		  'let?)
	      ((hash-table? c)	  'hash-table?)
	      ((input-port? c)	  'input-port?)
	      ((output-port? c)   'output-port?)
	      ((iterator? c)	  'iterator?)
	      ((continuation? c)  'continuation?)
	      ((dilambda? c)	  'dilambda?)
	      ((procedure? c)	  'procedure?)
	      ((macro? c)         'macro?)
	      ((random-state? c)  'random-state?)
	      ((eof-object? c)    'eof-object?)
	      ((c-pointer? c)     'c-pointer?)
	      (#t #t)))
      
      (define bools '(symbol? integer? rational? real? number? complex? float? keyword? gensym? byte-vector? string? list?
		      char? boolean? float-vector? int-vector? vector? let? hash-table? input-port? null? pair?
		      output-port? iterator? continuation? dilambda? procedure? macro? random-state? eof-object? c-pointer?))

      (define (compatible? type1 type2) ; we want type1, we have type2 -- is type2 ok?
	;(format *stderr* "compatible ~S ~S~%" type1 type2)
	(or (eq? type1 type2)
	    (not (symbol? type1))
	    (not (symbol? type2))
	    (not (memq type1 bools))
	    (not (memq type2 bools))
	    (case type1
	      ((number? complex?)  (memq type2 '(float? real? rational? integer? number? complex?)))
	      ((real?)             (memq type2 '(float? rational? integer? complex? number?)))
	      ((float?)            (memq type2 '(real? complex? number?)))
	      ((rational?)         (memq type2 '(integer? real? complex? number?)))
	      ((integer?)          (memq type2 '(real? rational? complex? number?)))
	      ((vector?)           (memq type2 '(float-vector? int-vector?)))
	      ((float-vector? int-vector?) (eq? type2 'vector?))
	      ((symbol?)           (memq type2 '(gensym? keyword?)))
	      ((keyword? gensym?)  (eq? type2 'symbol?))
	      ((list?)             (memq type2 '(null? pair?)))
	      ((pair? null?)       (eq? type2 'list?))
	      ((dilambda?)         (memq type2 '(procedure? macro? iterator?)))
	      ((procedure? macro?) (memq type2 '(dilambda? iterator?)))
	      ((iterator?)         (memq type2 '(dilambda? procedure?)))
	      ((string?)           (eq? type2 'byte-vector?))
	      ((byte-vector?)      (eq? type2 'string?))
	      (else #f))))

      (define (any-compatible? type1 type2)
	;; type1 and type2 can be either a list of types or a type
	(if (symbol? type1)
	    (if (symbol? type2)
		(compatible? type1 type2)
		(and (pair? type2)
		     (or (compatible? type1 (car type2))
			 (any-compatible? type1 (cdr type2)))))
	    (and (pair? type1)
		 (or (compatible? (car type1) type2)
		     (any-compatible? (cdr type1) type2)))))

      (define (subsumes? type1 type2)
	(or (eq? type1 type2)
	    (case type1
	      ((rational?)        (eq? type2 'integer?))
	      ((real?)            (memq type2 '(integer? rational? float?)))
	      ((complex? number?) (memq type2 '(integer? rational? float? real? complex? number?)))
	      ((list?)            (memq type2 '(pair? null? proper-list?)))
	      ((pair?)            (eq? type2 'proper-list?))
	      ((vector?)          (memq type2 '(float-vector? int-vector?)))
	      ((symbol?)          (memq type2 '(keyword? gensym?)))
	      (else #f))))

      (define (any-checker? types arg)
	(if (and (symbol? types)
		 (not (eq? types 'values)))
	    ((symbol->value types *e*) arg)
	    (and (pair? types)
		 (or (any-checker? (car types) arg)
		     (any-checker? (cdr types) arg)))))

      (define (never-false expr)
	(or (eq? expr #t)
	    (let ((type (if (pair? expr)
			    (and (hash-table-ref no-side-effect-functions (car expr))
				 (return-type (car expr)))
			    (->type expr))))
	      (and (symbol? type)
		   (not (symbol? expr))
		   (not (memq type '(boolean? values)))))))
	
      (define (never-true expr)
	(or (not expr)
	    (and (pair? expr)
		 (eq? (car expr) 'not)
		 (let ((f (never-false (cadr expr))))
		   ;(format *stderr* "f: ~S~%" f)
		   f))))

      ;; --------------------------------------------------------------------------------
      
      (define (truncated-list->string form)
	;; return form -> string with limits on its length
	(let* ((str (object->string form))
	       (len (length str)))
	  (if (< len 8)
	      (format #f " ~A" str)
	      (if (<= len 80)
		  (format #f "~%       ~A" str)
		  (do ((i 77 (- i 1)))
		      ((or (= i 40)
			   (char-whitespace? (str i)))
		       (format #f "~%       ~A..." (substring str 0 (if (<= i 40) 77 i)))))))))
      
      (define (lists->string f1 f2)
	;; same but 2 strings that may need to be lined up vertically
	(let* ((str1 (object->string f1))
	       (len1 (length str1))
	       (str2 (object->string f2))
	       (len2 (length str2)))
	  (if (< (+ len1 len2) 40)
	      (format #f "~A -> ~A" str1 str2)
	      (if (< (+ len1 len2) 80)
		  (format #f "~%       ~A -> ~A" str1 str2)
		  (format #f "~%       ~A ->~%       ~A" str1 str2)))))
      
      (define (lint-format str name . args)
	(if (and (positive? line-number)
		 (< line-number 100000))
	    (apply format outport (string-append " ~A (line ~D): " str "~%") name line-number args)
	    (apply format outport (string-append " ~A: " str "~%") name args)))
      
      (define (side-effect? form env)
	;; could evaluation of form have any side effects (like IO etc)

	(if (and (proper-list? form)                   ; we don't want dotted lists or () here
		 (not (null? form)))
	    ;; can't optimize ((...)...) because the car might eval to a function
	    (or (and (not (hash-table-ref no-side-effect-functions (car form))) ; if func is not in that list, make no assumptions about it
		     (or (not (eq? (car form) 'format))                         ; (format #f ...)
			 (cadr form)))
		(case (car form)
		  ((set! define define* define-macro define-macro* define-bacro define-bacro* define-constant define-expansion) #t)

		  ((quote) #f)

		  ((case)
		   (or (not (pair? (cdr form)))
		       (side-effect? (cadr form) env) ; the selector
		       (letrec ((case-effect? (lambda (f e)
						(and (pair? f)
						     (or (not (pair? (car f)))
							 (any? (lambda (ff) (side-effect? ff e)) (cdar f))
							 (case-effect? (cdr f) e))))))
			 (case-effect? (cddr form) env))))

		  ((cond)
		   (letrec ((cond-effect? (lambda (f e)
					    (and (pair? f)
						 (or (any? (lambda (ff) (side-effect? ff e)) (car f))
						     (cond-effect? (cdr f) e))))))
		     (or (not (pair? (cadr form)))
			 (cond-effect? (cdr form) env))))

		  ((let let* letrec letrec*)
		   (letrec ((let-effect? (lambda (f e)
					   (and (pair? f)
						(or (not (pair? (car f)))
						    (not (pair? (cdar f))) ; an error, reported elsewhere: (let ((x)) x)
						    (side-effect? (cadar f) e)
						    (let-effect? (cdr f) e))))))
		     (if (symbol? (cadr form))
			 (or (let-effect? (caddr form) env)
			     (any? (lambda (ff) (side-effect? ff env)) (cdddr form)))
			 (or (let-effect? (cadr form) env)
			     (any? (lambda (ff) (side-effect? ff env)) (cddr form))))))
		   
		  ((do)
		   (letrec ((do-effect? (lambda (f e)
					  (and (pair? f)
						(or (not (pair? (car f)))
						    (not (pair? (cdar f)))
						    (side-effect? (cadar f) e)
						    (and (pair? (cddar f))
							 (side-effect? (caddar f) e))
						    (do-effect? (cdr f) e))))))
		     (or (< (length form) 3)
			 (not (list? (cadr form)))
			 (not (list? (caddr form)))
			 (do-effect? (cadr form) env)
			 (any? (lambda (ff) (side-effect? ff env)) (caddr form))
			 (any? (lambda (ff) (side-effect? ff env)) (cdddr form)))))

		  ;; ((lambda lambda*) (any? (lambda (ff) (side-effect? ff env)) (cddr form))) ; this is trickier than it looks

		  (else
		   (or (any? (lambda (f) (side-effect? f env)) (cdr form)) ; any subform has a side-effect
		       (let ((sig (procedure-signature (car form))))       ; sig has func arg and it is not known safe
			 (and sig
			      (memq 'procedure? (cdr sig))
			      (call-with-exit
			       (lambda (return)
				 (for-each
				  (lambda (sg arg)
				    (when (eq? sg 'procedure?)
				      (if (or (not (symbol? arg))
					      (not (hash-table-ref no-side-effect-functions arg)))
					  (return #t))))
				  (cdr sig) (cdr form))
				 #f))))))))

	    (and (symbol? form)
		 (not (hash-table-ref no-side-effect-functions form))
		 (let ((e (or (var-member form env) (hash-table-ref globals form))))
		   (and (var? e)
			(let? (var-new e)))))))


      (define (just-constants? form env)
	;; can we probably evaluate form given just built-in stuff?
	(or (and (constant? form)
		 (not (pair? form))
		 (not (vector? form)))
	    (and (pair? form)
		 (or (and (symbol? (car form))
			  (hash-table-ref no-side-effect-functions (car form))
			  (not (hash-table-ref globals (car form)))
			  (not (var-member (car form) env))) ; e.g. exp declared locally as a list
		     (and (constant? (car form))
			  (not (pair? (car form)))
			  (not (vector? (car form)))))
		 (just-constants? (cdr form) env))))

      
      (define (equal-ignoring-constants? a b)
	(or (morally-equal? a b)
	    (and (symbol? a)
		 (constant? a) 
		 (morally-equal? (symbol->value a) b))
	    (and (symbol? b)
		 (constant? b)
		 (morally-equal? (symbol->value b) a))
	    (and (pair? a)
		 (pair? b)
		 (equal-ignoring-constants? (car a) (car b))
		 (equal-ignoring-constants? (cdr a) (cdr b)))))

      
      (define (just-symbols? form)
	(or (null? form)
	    (symbol? form)
	    (and (pair? form)
		 (symbol? (car form))
		 (just-symbols? (cdr form)))))

      (define (list-any? f lst)
	(if (pair? lst)
	    (or (f (car lst))
		(list-any? f (cdr lst)))
	    (f lst)))
      
      (define (reversible? func)
	(memq func '(* + = char=? string=? eq? eqv? equal? morally-equal? logand logxor logior max min lcm gcd
		     < > <= >=
		     char<? char>? char<=? char>=?
		     string<? string>? string<=? string>=?
		     char-ci<? char-ci>? char-ci<=? char-ci>=?
		     string-ci<? string-ci>? string-ci<=? string-ci>=?)))

      (define (reversed func)
	(case func
	  ((<) '>) ((>) '<) ((<=) '>=) ((>=) '<=)
	  ((* + = char=? string=? eq? eqv? equal? morally-equal? logand logxor logior max min lcm gcd) func)
	  ((char<?) 'char>?) ((char>?) 'char<?) ((char<=?) 'char>=?) ((char>=?) 'char<=?) 
	  ((string<?) 'string>?) ((string>?) 'string<?) ((string<=?) 'string>=?) ((string>=?) 'string<=?) 
	  ((char-ci<?) 'char-ci>?) ((char-ci>?) 'char-ci<?) ((char-ci<=?) 'char-ci>=?) ((char-ci>=?) 'char-ci<=?)
	  ((string-ci<?) 'string-ci>?) ((string-ci>?) 'string-ci<?) ((string-ci<=?) 'string-ci>=?) ((string-ci>=?) 'string-ci<=?)
	  (else #f)))
      
      (define (repeated-member? lst env)
	(and (pair? lst)
	     (or (and (or (not (pair? (car lst)))
			  (and (not (side-effect? (car lst) env))
			       (not (eq? (caar lst) 'random))))
		      (pair? (cdr lst))
		      (member (car lst) (cdr lst)))
		 (repeated-member? (cdr lst) env))))
      
      (define (check-args name head form checkers env max-arity)
	;; check for obvious argument type problems
	;; name = overall caller, head = current caller, checkers = proc or list of procs for checking args

	(define (prettify-arg-number argn)
	  (if (or (not (= argn 1))
		  (pair? (cddr form)))
	      (format #f "~D " argn)
	      ""))

	(define (check-checker checker at-end)
	  (if (eq? checker 'integer:real?)
	      (if at-end 'real? 'integer?)
	      (if (eq? checker 'integer:any?)
		  (or at-end 'integer?)
		  checker)))

	(let ((arg-number 1))
	  (call-with-exit
	   (lambda (done)
	     (for-each 
	      (lambda (arg)
		(let ((checker (check-checker (if (list? checkers) (car checkers) checkers) (= arg-number (length (cdr form))))))
		  ;(format *stderr* "check-arg ~A check ~S via ~S~%" head arg checker)
		  (when (or (pair? checker)
			    (symbol? checker)) ; otherwise ignore type check on this argument (#t -> anything goes)
		    (if (pair? arg)                  ; arg is expr -- try to guess its type
			(if (eq? (car arg) 'quote)   ; '1 -> 1

			    ;; arg is quoted expression
			    (if (not (any-compatible? checker (if (pair? (cadr arg)) 'list? (->type (cadr arg)))))
				(lint-format "~A's argument ~Ashould be a~A ~A: ~S: ~A" 
					     name head 
					     (prettify-arg-number arg-number)
					     (if (char=? (string-ref (format #f "~A" checker) 0) #\i) "n" "")
					     checker arg 
					     (truncated-list->string form)))

			    ;; arg is an evaluated expression
			    (let ((op (return-type (car arg))))
			      ;; checker is arg-type, op is expression type (can also be a pair)
			      (unless (memq op '(#t #f values))

				(if (or (not (any-compatible? checker op))
					(and (just-constants? arg env) ; try to eval the arg
					     (catch #t 
					       (lambda ()
						 (not (any-checker? checker (eval arg))))
					       (lambda ignore-catch-error-args
						 #f))))
				    (lint-format "~A's argument ~Ashould be a~A ~A: ~S: ~A" 
						 name head 
						 (prettify-arg-number arg-number)
						 (if (char=? (string-ref (format #f "~A" checker) 0) #\i) "n" "")
						 checker arg 
						 (truncated-list->string form))))))
			;; arg is not a pair
			(if (and (not (symbol? arg))
				 (not (any-checker? checker arg)))
			    (lint-format "~A's argument ~Ashould be a~A ~A: ~S: ~A" 
					 name head
					 (prettify-arg-number arg-number)
					 (if (char=? (string-ref (format #f "~A" checker) 0) #\i) "n" "")
					 checker arg 
					 (truncated-list->string form)))))

		  (if (list? checkers)
		      (if (null? (cdr checkers))
			  (done)
			  (set! checkers (cdr checkers))))
		  (set! arg-number (+ arg-number 1))
		  (if (> arg-number max-arity) (done))))
	      (cdr form))))))
      
      
      (define (set-ref? name env)
	;; if name is in env, set its "I've been referenced" flag
	(let ((data (or (var-member name env) (hash-table-ref globals name))))
	  (when (var? data)
	    (set! (var-ref data) #t)))
	env)
      
      (define (set-set? name new-val env)
	;; TODO: if (set! func val) need to either clear func info or fix it up

	(let ((data (or (var-member name env) (hash-table-ref globals name))))
	  (when (var? data)
	    (set! (var-value data) new-val)
	    (set! (var-new data) #f) ; a stopgap
	    (set! (var-set data) #t))))
      
      (define (proper-list lst)
	;; return lst as a proper list
	(if (pair? lst)
	    (cons (car lst) 
		  (if (pair? (cdr lst)) 
		      (proper-list (cdr lst)) 
		      (if (null? (cdr lst)) 
			  () 
			  (list (cdr lst)))))
	    lst))

      
      (define (keywords lst)
	(let ((count 0))
	  (do ((p lst (cdr p)))
	      ((null? p) count)
	    (if (keyword? (car p))
		(set! count (+ count 1))))))
      ;(count-if keyword? lst))
      
      (define (check-star-parameters name args)
	(if (list-any? (lambda (k) (memq k '(:key :optional))) args)
	    (lint-format ":optional and key are no longer accepted: ~A" name args))
	(let ((r (memq :rest args)))
	  (if (and (pair? r)
		   (null? (cdr r)))
	      (lint-format ":rest parameter needs a name: ~A" name args)))
	(let ((a (memq :allow-other-keys args)))
	  (if (and (pair? a)
		   (pair? (cdr a)))
	      (lint-format ":allow-other-keys should be at the end of the parameter list: ~A" name args))))

      (define (tree-member sym tree)
	(and (pair? tree)
	     (or (eq? (car tree) sym)
		 (and (pair? (car tree))
		      (tree-member sym (car tree)))
		 (tree-member sym (cdr tree)))))
      
      (define (tree-car-member sym tree)
	(and (pair? tree)
	     (or (eq? (car tree) sym)
		 (and (pair? (car tree))
		      (tree-car-member sym (car tree)))
		 (and (pair? (cdr tree))
		      (member sym (cdr tree) tree-car-member)))))
      
      (define (remove item sequence)
	(let ((got-it #f))
	  (map (lambda (x)
		 (if (and (not got-it)
			  (equal? x item))
		     (begin
		       (set! got-it #t)
		       (values))
		     x))
	       sequence)))
      
      (define (remove-all item sequence)
	(map (lambda (x)
	       (if (equal? x item)
		   (values)
		   x))
	     sequence))
      
      (define (remove-if p l)
	(cond ((null? l) ())
	      ((p (car l)) (remove-if p (cdr l)))
	      (else (cons (car l) 
			  (remove-if p (cdr l))))))

      (define (checked-eval form)
	(catch #t
	  (lambda ()
	    (eval (copy-tree form)))
	  (lambda args
	    #t)))   ; just ignore errors in this context

      (define (return-type-ok? type ret)
	(or (eq? type ret)
	    (and (pair? ret)
		 (memq type ret))))


      (define (simplify-boolean in-form true false env)
	;; (or)->#f, (or x) -> x, (or x ... from here on we know x is #f), (or x #t...) -> (or x #t), any constant expr can be collapsed
	;;   (or ... (or ...) ...) -> or of all, (or ... #f ...) toss the #f
	;; similarly for and
	;; (or ... (not (and ...))) -> (or ... (not x) [from here we know x is true] (not y)...)
	;; (or ... (not (and x1 x2 ...))) -> (or ... (not x1) (not x2)...), but is that simpler?
	
	;;   (or x1 x2 x1) -> (or x1 x2) 
	;;   (and x1 x2 x1) -> (and x2 x1)

	(define (bsimp uform)
	  ;; find and remove any expressions that have no effect on the outcome
	  (if (or (not (pair? uform))
		  (not (memq (car uform) '(and or not)))
		  (side-effect? uform env))
	      uform
	      
	      (let ((vars ())
		    (associated-exprs ())
		    (ctr 0))
		
		(define (tree-remove-all x lst) 
		  (cond ((null? lst) ()) 
			((equal? (car lst) x) (tree-remove-all x (cdr lst)))
			((pair? (car lst)) (cons (tree-remove-all x (car lst)) (tree-remove-all x (cdr lst))))
			(else (cons (car lst) (tree-remove-all x (cdr lst))))))
		
		(define (canonical-tree lst)
		  (let ((data (assoc lst associated-exprs)))
		    (if data
			(cdr data)
			(if (pair? lst) 
			    (cons (canonical-tree (car lst)) 
				  (canonical-tree (cdr lst))) 
			    lst))))
		
		(define (expand expr)
		  (define (car-rassoc val lst)
		    (and (pair? lst)
			 (if (equal? (cdar lst) val)
			     (car lst)
			     (car-rassoc val (cdr lst)))))
		  (let ((data (car-rassoc expr associated-exprs)))
		    (if data
			(copy (car data))
			(if (pair? expr)
			    (cons (expand (car expr))
				  (expand (cdr expr)))
			    expr))))
		
		(define (bool-walk form func) 
		  (if (and (pair? form)
			   (memq (car form) '(and or not)))
		      (for-each
		       (lambda (e)
			 (bool-walk e func))
		       (cdr form))
		      (func form)))
		
		(bool-walk uform (lambda (val) 
				   (if (and (or (pair? val)
						(symbol? val))
					    (not (assoc val associated-exprs))
					    (not (memq val '(and or not)))) ; (not not)
				       (let ((new-var (string->symbol (format #f "bool-~D" ctr))))
					 (set! vars (cons new-var vars))
					 (set! associated-exprs (cons (cons val new-var) associated-exprs))
					 (set! ctr (+ ctr 1))))))
		
		(if (or (null? vars)
			(> (length vars) 8))
		    uform
		    (let ((len (length vars)))
		      (let ((vsize (expt 2 len))) ; 2^n possible cases
			(let ((v (make-vector vsize))
			      (vals ())
			      (nonf (make-vector len))
			      (cur 0)
			      (ctr 0)
			      (form (canonical-tree uform))) 
			  ;; (and (real? mag) (real? ang)) -> (and bool-0 bool-1)
			  ;; (not off)                     -> (not bool-0)
			  ;; (or din (sqrt 2.0))           -> (or bool-0 bool-1)
			  
			  (for-each
			   (lambda (var)
			     (do ((i cur (+ i 1)))
				 ((not (tree-member i form)) ; tree-member uses eq? (should use = for this?)
				  (set! cur (+ i 1))
				  (vector-set! nonf ctr i)
				  (set! ctr (+ ctr 1)))))
			   vars)
			  
			  (catch #t
			    (lambda ()
			      (let ((new-func (apply lambda vars form ())))
				(do ((ctr 0 (+ ctr 1)))
				    ((= ctr vsize))
				  (vector-set! v ctr (apply new-func (let ((args ()))
								       (do ((i 0 (+ i 1)))
									   ((= i len) (reverse args))
									 (set! args (cons (and (logbit? ctr i) 
											       (vector-ref nonf i))
											  args))))))
				  (if (not (member (vector-ref v ctr) vals))
				      (set! vals (cons (vector-ref v ctr) vals))))))
			    (lambda args 'error))
			  
			  (if (= (length vals) 1)
			      (car vals)
			      (let ((none-vars ())
				    (pos -1))
				(for-each
				 (lambda (var)
				   (set! pos (+ pos 1))
				   (call-with-exit
				    (lambda (return)
				      (do ((ctr 0 (+ ctr 1)))
					  ((= ctr vsize)
					   (set! none-vars (cons var none-vars)))
					(if (and (not (logbit? ctr pos))
						 (not (equal? (vector-ref v ctr) (vector-ref v (logior ctr (ash 1 pos))))))
					    (return #f))))))
				 vars)
				
				(if (pair? none-vars)
				    (begin
				      (for-each
				       (lambda (nv)
					 (set! form (tree-remove-all nv form)))
				       none-vars)
				      (expand form))
				    uform))))))))))
	
	(define (true? e)
	  (or (member e true)
	      (and (pair? e)
		   (= (length e) 2)
		   (or (member e true 
			       (lambda (a b)
				 ;; if a follows b, and b is true, do we know already know that a?
				 ;; (and (< x1 12) (real? x1) (= x1 1)) -> (and (< x1 12) (= x1 1))
				 (and (pair? b)
				      (or (and (= (length b) 2)
					       (equal? (cadr a) (cadr b))
					       (case (car a)
						 ((complex?)  (memq (car b) '(number? real? rational? integer? even? odd? 
										      positive? negative? zero? exact? inexact?)))
						 ((number?)   (memq (car b) '(complex? real? rational? integer? even? odd? 
										       positive? negative? zero? exact? inexact?)))
						 ((real?)     (memq (car b) '(rational? integer? even? odd? positive? negative? exact? inexact?)))
						 ((rational?) (memq (car b) '(integer? even? odd?)))
						 ((integer?)  (memq (car b) '(even? odd?)))
						 (else #f)))
					  (and (> (length b) 2)
					       (member (cadr a) (cdr b))
					       (case (car a)
						 ((complex? number?) (eq? (car b) '=))
						 ((real?)            (memq (car b) '(< > <= >=)))
						 (else #f)))))))
		       (and (pair? (cadr e))
			    (memq (car e) bools)
			    (memq (return-type (caadr e)) bools)
			    (subsumes? (car e) (return-type (caadr e))))))))
	
	(define (false? e)
	  
	  (define (bad-arg-match a b)
	    
	    ;; these accept only the given type and can return a boolean (so their value in a boolean expression is not known in advance)
	    (define (number-op? x) (memq x '(= < > <= >= even? odd? positive? negative? zero?)))
	    (define (char-op? x)   (memq x '(char=? char<? char<=? char>? char>=? char-ci=? char-ci<? char-ci<=? char-ci>? char-ci>=? 
						    char-alphabetic? char-numeric? char-whitespace? char-lower-case? char-upper-case?)))
	    (define (list-op? x)   (memq x '(caaaar caaadr caaar caadar caaddr caadr caar cadaar cadadr cadar caddar cadddr caddr 
						    cadr car cdaaar cdaadr cdaar cdadar cdaddr cdadr cdar cddaar cddadr cddar cdddar 
						    cddddr cdddr cddr cdr list-ref)))
	    (define (string-op? x) (memq x '(string=? string<? string<=? string>? string>=? string-ci=? string-ci<? string-ci<=? string-ci>? string-ci>=?)))
	    
	    (case a
	      ((complex? number? real? rational? integer?) 
	       (or (char-op? b)     ; that is, if these are false, then a non-number was accepted
		   (list-op? b)     ;    earlier as a valid argument, so it can't be a number
		   (string-op? b))) ;    (or (char=? x1 #\a) (complex? x1) x1) -> (or (char=? x1 #\a) x1)
	      ((char?) 
	       (or (number-op? b)
		   (list-op? b)
		   (string-op? b)))
	      ((string?) 
	       (or (char-op? b)
		   (list-op? b)
		   (number-op? b)))
	      ((list?) 
	       (or (char-op? b)
		   (number-op? b)
		   (string-op? b)))
	      ((boolean? procedure? symbol? continuation? let?)
	       (or (char-op? b)
		   (number-op? b)
		   (list-op? b)
		   (string-op? b)))
	      (else #f)))
	  
	  (or (member e false)
	      (and (pair? e)
		   (= (length e) 2)
		   (or (member e false (lambda (a b)
					 (and (pair? b)
					      (>= (length b) 2)
					      (member (cadr a) (cdr b))
					      (bad-arg-match (car a) (car b)))))
		       (member e true (lambda (a b)
					(and (pair? b)
					     (>= (length b) 2)
					     (member (cadr a) (cdr b))
					     (bad-arg-match (car a) (car b)))))
		       (and (pair? (cadr e))
			    (memq (car e) bools)
			    (memq (return-type (caadr e)) bools)
			    (not (any-compatible? (car e) (return-type (caadr e)))))))))
	
	(define (contradictory? ands)
	  (let ((vars ()))
	    (call-with-exit
	     (lambda (return)
	       (do ((b ands (cdr b)))
		   ((null? b) #f)
		 (if (and (pair? b)
			  (pair? (car b))
			  (pair? (cdar b)))
		     (let* ((func (caar b))
			    (arg-type func)
			    (args (cdar b)))
		       (if (symbol? arg-type)
			   (for-each
			    (lambda (arg)
			      (if (symbol? arg)
				  (let ((type (assq arg vars)))
				    (if (not type)
					(set! vars (cons (cons arg arg-type) vars))
					(if (not (compatible? (cdr type) arg-type))
					    (return #t))))))
			    args)))))))))
	
	(define (and-redundant? type1 type2)
	  (if (or (not (symbol? type1))
		  (not (symbol? type2))
		  (not (memq type1 bools))
		  (not (memq type2 bools)))
	      #f ; return #f if not (obviously) redundant, else return which of the two to keep
	      (if (eq? type1 type2)
		  type1
		  (case type1
		    ((number? complex?) (or (and (memq type2 '(float? real? rational? integer?)) type2)
					    (and (memq type2 '(number? complex?)) type1)))
		    ((real?)            (or (and (memq type2 '(float? rational? integer?)) type2)
					    (and (memq type2 '(number? complex?)) type1)))
		    ((float?)           (and (memq type2 '(real? complex? number?)) type1))
		    ((rational?)        (or (and (eq? type2 'integer?) type2)
					    (and (memq type2 '(real? complex? number?)) type1)))
		    ((integer?)         (and (memq type2 '(real? rational? complex? number?)) type1))
		    ((vector?)          (and (memq type2 '(float-vector? int-vector?)) type2))
		    ((float-vector? int-vector?) (and (eq? type2 'vector?) type1))
		    ((symbol?)          (and (memq type2 '(keyword? gensym?)) type2))
		    ((keyword? gensym?) (and (eq? type2 'symbol?) type1))
		    ((list?)            (and (memq type2 '(null? pair?)) type2))
		    ((pair? null?)      (and (eq? type2 'list?) type1))
		    ((string?)          (and (eq? type2 'byte-vector?) type2))
		    ((byte-vector?)     (and (eq? type2 'string?) type1))
		    (else #f)))))

	(define (classify e)
	  ;; do we already know that e is true or false?
	  ;;   some cases subsume others: if we know (integer? x) is true, (complex? x) is also true
	  (if (true? e)
	      #t ; the simple boolean is passed back which will either be dropped or will stop the outer expr build
	      (if (false? e)
		  #f
		  ;; eval of a constant expression here is tricky -- for example, (sqrt 2) should not be turned into 1.414...
		  (if (just-constants? e env)
		      (catch #t
			(lambda ()
			  (let ((val (eval e)))
			    (if (boolean? val)
				val
				e)))
			(lambda ignore e))
		      e))))
	
	(define (store e value and/or)
	  ;; we can't make any assumptions about the expression if it might have side effects
	  ;;   for example (or (= (oscil o) 0.0) (= (oscil o) 0.0)) can't be reduced
	  
	  (if (or (not (pair? e))
		  (not (side-effect? e env)))
	      (let ((its-true (if (eq? and/or 'or)
				  (eq? value #t)             ; or, so it's false if unknown
				  value)))
		(if its-true
		    (set! true (cons e true))
		    (set! false (cons e false))))))
	
	(let ((form (bsimp in-form)))
	  ;(format *stderr* "form: ~S~%" form)
	  (if (or (not (pair? form))
		  (not (memq (car form) '(or and not))))
	      (classify form)
	      (let ((len (length form)))
		
		(case (car form)
		  
		  ((not)
		   (if (= len 2)
		       (let* ((arg (cadr form))
			      (val (if (and (pair? arg)
					    (memq (car arg) '(and or not)))
				       (classify (simplify-boolean arg true false env))
				       (classify arg))))
			 ;(format *stderr* "val ~S, arg: ~S~%" val arg)
			 (if (boolean? val)
			     (not val)
			     (if (or (code-constant? arg)
				     (and (pair? arg)
					  (symbol? (car arg))
					  (hash-table-ref no-side-effect-functions (car arg))
					  (not (hash-table-ref globals (car arg)))
					  (let ((ret (return-type (car arg))))
					    (and (or (symbol? ret) (pair? ret))
						 (not (return-type-ok? 'boolean? ret))))
					  (not (var-member (car arg) env))))
				 #f
				 (if (and (pair? arg)               ; (not (not ...)) -> ...
					  (pair? (cdr arg))
					  (eq? (car arg) 'not))
				     (cadr arg)
				     (if (not (equal? val arg))
					 `(not ,val)
					 (if (and (pair? arg)
						  (<= (length arg) 3)) ; avoid (<= 0 i 12) and such
					     (case (car arg)
					       ((<)            `(>= ,@(cdr arg)))   ; (not (< ...)) -> (>= ...) 
					       ((>)            `(<= ,@(cdr arg)))
					       ((<=)           (if (morally-equal? (caddr arg) 0.0) `(positive? ,(cadr arg)) `(> ,@(cdr arg))))
					       ((>=)           (if (morally-equal? (caddr arg) 0.0) `(negative? ,(cadr arg)) `(< ,@(cdr arg))))
					       ((char<?)       `(char>=? ,@(cdr arg)))
					       ((char>?)       `(char<=? ,@(cdr arg)))
					       ((char<=?)      `(char>? ,@(cdr arg)))
					       ((char>=?)      `(char<? ,@(cdr arg)))
					       ((char-ci<?)    `(char-ci>=? ,@(cdr arg)))
					       ((char-ci>?)    `(char-ci<=? ,@(cdr arg)))
					       ((char-ci<=?)   `(char-ci>? ,@(cdr arg)))
					       ((char-ci>=?)   `(char-ci<? ,@(cdr arg)))
					       ((string<?)     `(string>=? ,@(cdr arg)))
					       ((string>?)     `(string<=? ,@(cdr arg)))
					       ((string<=?)    `(string>? ,@(cdr arg)))
					       ((string>=?)    `(string<? ,@(cdr arg)))
					       ((string-ci<?)  `(string-ci>=? ,@(cdr arg)))
					       ((string-ci>?)  `(string-ci<=? ,@(cdr arg)))
					       ((string-ci<=?) `(string-ci>? ,@(cdr arg)))
					       ((string-ci>=?) `(string-ci<? ,@(cdr arg)))
					       ((odd?)         `(even? ,@(cdr arg)))
					       ((even?)        `(odd? ,@(cdr arg)))
					       ((exact?)       `(inexact? ,@(cdr arg)))
					       ((inexact?)     `(exact? ,@(cdr arg)))
					       ;; ((null?)        `(pair? ,@(cdr arg)))
					       ;;      this is not quite right
					       ;; char-upper-case? and lower are not switchable here

					       ;; if stuff loaded, (not (every? ...)) => any? and so on

					       ((zero?)       ; (not (zero? (logand p (ash 1 i)))) -> (logbit? p i)
						(let ((zarg (cadr arg)))  ; (logand...)
						  (if (and (pair? zarg)
							   (eq? (car zarg) 'logand)
							   (pair? (cddr zarg))
							   (pair? (caddr zarg))
							   (eq? (caaddr zarg) 'ash)
							   (eqv? (cadr (caddr zarg)) 1))
						      `(logbit? ,(cadr zarg) ,(caddr (caddr zarg)))
						      form)))

					       (else form))
					     form))))))
		       form))
		  
		  ((or)
		   (and (> len 1)
		       (let ((arg1 (cadr form)))
			 (if (= len 2)
			     (if (code-constant? arg1)
				 arg1
				 (classify arg1))
			     (if (true? arg1)        ; no need to check anything else
				 #t                  ; side-effect? here is a nightmare
				 (let* ((arg2 (caddr form))
					(t1 (and (= len 3)
						 (pair? arg1)
						 (pair? arg2)
						 (pair? (cdr arg1))
						 (pair? (cdr arg2))
						 (equal? (cadr arg1) (cadr arg2))
						 (not (side-effect? arg1 env))
						 (and-redundant? (car arg1) (car arg2)))))
				   (if t1
				       (if (eq? t1 (car arg1))
					   arg2
					   arg1)
				       (let ((sf #f))
					 (if (and (every? (lambda (p)
							    (and (pair? p)
								 (pair? (cdr p))
								 (eq? (car p) 'not)))
							  (cdr form))
						  (let ()
						    (set! sf (simplify-boolean `(not (and ,@(map cadr (cdr form)))) true false env))
						    (or (not (pair? sf))
							(not (eq? (car sf) 'not))
							(not (pair? (cadr sf)))
							(not (eq? (caadr sf) 'and)))))
					     sf
					     ;; if all clauses are (eq-func x y) where one of x/y is a symbol|simple-expr repeated throughout
					     ;;   and the y is a code-constant, or -> memq and friends.  This could also handle cadr|caddr reversed.

					     ;; (or (pair? x) (null? x)) -> (list? x)

					     (let ((sym #f)
						   (eqf #f))
					       (if (every? (lambda (p)
							     (and (pair? p)
								  (if (not eqf)
								      (and (memq (car p) '(eq? eqv? equal? char=? string=? = char-ci=? string-ci=?))
									   (set! eqf (car p)))
								      (eq? eqf (car p)))
								  (if (not sym) 
								      (and (not (side-effect? (cadr p) env))
									   (set! sym (cadr p)))
								      (equal? sym (cadr p)))
								  (code-constant? (caddr p))))
							   (cdr form))
						   (let* ((vals (map caddr (cdr form)))
							  (func (case eqf 
								  ((eq?) 'memq) 
								  ((eqv? char=?) 'memv) 
								  ((=) (if (every? rational? vals) 'memv 'member))
								  (else 'member)))
							  (equals (if (and (eq? func 'member)
									   (not (eq? eqf 'equal?)))
								      (list eqf)
								      ()))
							  (elements (map (lambda (v) (if (pair? v) (cadr v) v)) vals)))
						     (if (and (eq? eqf 'char=?)
							      (= (length elements) 2)
							      (char-ci=? (car elements) (cadr elements)))
							 `(char-ci=? ,sym ,(car elements))
							 (if (and (eq? eqf 'string=?)
								  (= (length elements) 2)
								  (string-ci=? (car elements) (cadr elements)))
							     `(string-ci=? ,sym ,(car elements))
							     `(,func ,sym ',(map (lambda (v) (if (pair? v) (cadr v) v)) vals) ,@equals))))
						   
						   (let ((new-form ()))
						     (do ((exprs (cdr form) (cdr exprs)))
							 ((null? exprs) 
							  (if (null? new-form)
							      #f
							      (if (null? (cdr new-form))
								  (car new-form)
								  `(or ,@(reverse new-form)))))
						       (let* ((e (car exprs))
							      (val (classify e)))
							 
							 (if (and (pair? val)
								  (memq (car val) '(and or not)))
							     (set! val (classify (set! e (simplify-boolean e true false env)))))
							 
							 (if val                                ; #f in or is ignored
							     (if (or (eq? val #t)               ; #t or any non-#f constant in or ends the expression
								     (code-constant? val))
								 (begin
								   (if (null? new-form)         ; (or x1 123) -> value of x1 first
								       (set! new-form (list val))           ;was `(,val))
								       (set! new-form (cons val new-form))) ;was (append `(,val) new-form))) ; reversed when returned
								   (set! exprs '(#t)))
								 
								 ;; (or x1 x2 x1) -> (or x1 x2) is ok because if we get to x2, x1 is #f, so trailing x1 would still be #f
								 
								 (if (and (pair? e)             ; (or ...) -> splice into current
									  (eq? (car e) 'or))
								     (set! exprs (append e (cdr exprs))) ; we'll skip the 'or in do step
								     (begin                     ; else add it to our new expression with value #f
								       (store e val 'or)
								       (if (not (memq val new-form))
									   (set! new-form (cons val new-form)))))))))))))))))))))
		  
		  ((and)
		   (or (= len 1)
		       (let ((arg1 (cadr form)))
			 (if (= len 2)
			     (classify arg1)
			     (and (not (contradictory? (cdr form)))
				 (let* ((arg2 (caddr form))
					(t1 (and (= len 3)
						 (pair? arg1)
						 (pair? arg2)
						 (pair? (cdr arg1))
						 (pair? (cdr arg2))
						 (equal? (cadr arg1) (cadr arg2))
						 (not (side-effect? arg1 env))
						 (and-redundant? (car arg1) (car arg2))))) ; (and (integer? x) (number? x)) -> (integer? x)
				   (if t1
				       (if (eq? t1 (car arg1))
					   arg1
					   arg2)
				       (let ((new-form ()))
					 
					 (if (and (= len 3)
						  (not (side-effect? arg1 env))
						  (equal? arg1 arg2))                  ; (and x x) -> x
					     arg1

					     ;; (and (= ...)...) for more than 2 args? 
					     ;;   (and (< x y z) (< z w)) -> (< x y z w) ?
					     ;;   (and (< x y) (< y z) (< z w)) -> (< x y z w)

					     (if (and (= len 3)
						      (pair? arg1)
						      (pair? arg2)
						      (reversible? (car arg1))
						      (null? (cdddr arg1))
						      (pair? (cdr arg2))
						      (pair? (cddr arg2))
						      (null? (cdddr arg2))
						      (not (side-effect? arg2 env)) ; arg1 is hit in any case
						      (or (eq? (car arg1) (car arg2))
							  (let ((rf (reversed (car arg2))))
							    (and (eq? (car arg1) rf)
								 (set! arg2 (append (list rf) (reverse (cdr arg2)))))))
						      (or (eq? (caddr arg1) (cadr arg2))
							  (eq? (cadr arg1) (caddr arg2))
							  (and (memq (car arg1) '(= char=? string=? char-ci=? string-ci=?))
							       (or (eq? (cadr arg1) (cadr arg2))
								   (eq? (caddr arg1) (caddr arg2))))))
						 (if (eq? (caddr arg1) (cadr arg2))
						     `(,(car arg1) ,(cadr arg1) ,(cadr arg2) ,(caddr arg2))
						     (if (eq? (cadr arg1) (caddr arg2))
							 `(,(car arg1) ,(cadr arg2) ,(cadr arg1) ,(caddr arg1))
							 (if (eq? (cadr arg1) (cadr arg2))
							     `(,(car arg1) ,(cadr arg1) ,(caddr arg1) ,(caddr arg2))
							     `(,(car arg1) ,(cadr arg1) ,(caddr arg1) ,(cadr arg2)))))

						 (do ((exprs (cdr form) (cdr exprs)))
						     ((null? exprs) 
						      (if (null? new-form)
							  #t                                ; (and) -> #t
							  (let* ((nform (reverse new-form)) 
								 (newer-form (map (lambda (x cdr-x)
										    (if (and x (code-constant? x))
											(values)
											x))
										  nform (cdr nform))))
							    (if (null? newer-form)
								(car new-form)
								`(and ,@newer-form ,(car new-form))))))
						   
						   (let* ((e (car exprs))
							  (val (classify e)))
						     
						     (if (and (pair? val)
							      (memq (car val) '(and or not)))
							 (set! val (classify (set! e (simplify-boolean e () false env)))))
						     
						     ;; (and x1 x2 x1) is not reducible
						     ;;   the final thing has to remain at the end, but can be deleted earlier if it can't short-circuit the evaluation,
						     ;;   but if there are expressions following the first x1, we can't be sure that it is not
						     ;;   protecting them:
						     ;;       (and false-or-0 (display (list-ref lst false-or-0)) false-or-0)
						     ;;   so I'll not try to optimize that case.  But (and x x) is optimizable.
						     
						     (if (eq? val #t)
							 (if (null? (cdr exprs))     ; (and x y #t) should not remove the #t
							     (if (or (and (pair? e)
									  (eq? (return-type (car e)) 'boolean?))
								     (eq? e #t))
								 (set! new-form (cons val new-form))
								 (if (or (null? new-form)
									 (not (equal? e (car new-form))))
								     (set! new-form (cons e new-form))))
							     (if (and (not (eq? e #t))
								      (or (null? new-form)
									  (not (member e new-form))))
								 (set! new-form (cons e new-form))))
							 
							 (if (not val)             ; #f in 'and' ends the expression
							     (begin
							       (if (or (null? new-form)   
								       (just-symbols? new-form))
								   (set! new-form '(#f))
								   (set! new-form (cons #f new-form))) ;was (append '(#f) new-form)))
							       (set! exprs '(#f)))
							     (if (and (pair? e)       ; if (and ...) splice into current
								      (eq? (car e) 'and))
								 (set! exprs (append e (cdr exprs)))
								 (if (not (and (pair? e)                   ; (and ... (or ... 123) ...) -> splice out or
									       (pair? (cdr exprs))
									       (eq? (car e) 'or)
									       (> (length e) 2)
									       (let ((last (list-ref e (- (length e) 1))))
										 (and last ; (or ... #f)
										      (code-constant? last)))))
								     (begin                 ; else add it to our new expression with value #t
								       (store e val 'and)
								       (if (or (not (pair? new-form))
									       (not (eq? val (car new-form))))
									   (set! new-form (cons val new-form)))))))))))))))))))))))))
      
      (define (splice-if f lst)
	(cond ((null? lst) ())
	      ((pair? lst)
	       (if (and (pair? (car lst))
			(f (caar lst)))
		   (append (splice-if f (cdar lst)) (splice-if f (cdr lst)))
		   (cons (car lst) (splice-if f (cdr lst)))))
	      (#t lst)))
      
      
      (define (simplify-numerics form env)
	;; this returns a form, possibly the original simplified
	(let ((real-result? (lambda (op) (memq op '(imag-part real-part abs magnitude angle max min exact->inexact
							      modulo remainder quotient lcm gcd))))
	      (rational-result? (lambda (op) (memq op '(rationalize inexact->exact))))
	      (integer-result? (lambda (op) (memq op '(logior lognot logxor logand numerator denominator 
							      floor round truncate ceiling ash)))))
	  
	  (define (inverse-op op)
	    (case op 
	      ((sin) 'asin) ((cos) 'acos) ((tan) 'atan) ((asin) 'sin) ((acos) 'cos) ((atan) 'tan)
	      ((sinh) 'asinh) ((cosh) 'acosh) ((tanh) 'atanh) ((asinh) 'sinh) ((acosh) 'cosh) ((atanh) 'tanh)
	      ((log) exp) ((exp) log)))
	  
	  
	  (define (remove-duplicates lst)
	    (letrec ((rem-dup
		      (lambda (lst nlst)
			(cond ((null? lst) nlst)
			      ((and (member (car lst) nlst)
				    (or (not (pair? (car lst)))
					(not (eq? (caar lst) 'random)))) ; this problem applies to anything that calls random, mus-random etc
			       (rem-dup (cdr lst) nlst))
			      (else (rem-dup (cdr lst) (cons (car lst) nlst)))))))
	      (reverse (rem-dup lst ()))))
	  
	  (define (just-rationals? form)
	    (or (null? form)
		(rational? form)
		(and (pair? form)
		     (rational? (car form))
		     (just-rationals? (cdr form)))))
	  
	  (define (just-reals? form)
	    (or (null? form)
		(real? form)
		(and (pair? form)
		     (real? (car form))
		     (just-reals? (cdr form)))))
	  
	  (define (just-integers? form)
	    (or (null? form)
		(integer? form)
		(and (pair? form)
		     (integer? (car form))
		     (just-integers? (cdr form)))))
	  
	  (define (simplify-arg x)
	    (if (or (not (pair? x))                      ; constants and the like look dumb if simplified
		    (hash-table-ref globals (car x))
		    (not (hash-table-ref no-side-effect-functions (car x)))
		    (var-member (car x) env))
		x
		(let ((f (simplify-numerics x env)))
		  (if (and (pair? f)
			   (just-rationals? f))
		      (catch #t
			(lambda ()
			  (eval f))
			(lambda ignore f))
		      f))))
	  
	  (let* ((args (map simplify-arg (cdr form)))
		 (len (length args)))

	    (case (car form)
	      ((+)
	       (case len
		 ((0) 0)
		 ((1) (car args))
		 (else 
		  (let ((val (remove-all 0 (splice-if (lambda (x) (eq? x '+)) args))))
		    (if (every? (lambda (x) (or (not (number? x)) (rational? x))) val)
			(let ((rats (collect-if list rational? val)))
			  (if (> (length rats) 1)
			      (let ((y (apply + rats)))
				(if (zero? y)
				  (set! val (collect-if list (lambda (x) (not (number? x))) val))
				  (set! val (cons y (collect-if list (lambda (x) (not (number? x))) val))))))))
		    (case (length val)
		      ((0) 0)
		      ((1) (car val))                     ; (+ x) -> x
		      (else `(+ ,@val)))))))              ; other obvious simplifications never happen
	      
	      ((*)
	       (case len
		 ((0) 1)
		 ((1) (car args))
		 (else 
		  (let ((val (remove-all 1 (splice-if (lambda (x) (eq? x '*)) args))))
		    (if (every? (lambda (x) (or (not (number? x)) (rational? x))) val)
			(let ((rats (collect-if list rational? val)))
			  (if (> (length rats) 1)
			      (let ((y (apply * rats)))
				(if (= y 1)
				  (set! val (collect-if list (lambda (x) (not (number? x))) val))
				  (set! val (cons y (collect-if list (lambda (x) (not (number? x))) val))))))))
		    (case (length val)
		      ((0) 1)
		      ((1) (car val))                     ; (* x) -> x
		      (else 
		       (if (just-rationals? val)
			   (apply * val)
			   (if (memv 0 val)               ; (* x 0 2) -> 0
			       0 
			       (if (= (length val) 2)
				   (if (memv -1 val)
				       `(- ,@(remove -1 val)) ; (* -1 x) -> (- x)
				       (if (and (pair? (car val))
						(pair? (cadr val))
						(= (length (car val)) 3)
						(equal? (cdar val) (cdadr val))
						(or (and (eq? (caar val) 'gcd) (eq? (caadr val) 'lcm))
						    (and (eq? (caar val) 'lcm) (eq? (caadr val) 'gcd))))
					   `(abs (* ,@(cdar val))) ; (* (gcd a b) (lcm a b)) -> (abs (* a b)) but only if 2 args?
					   `(* ,@val)))
				   `(* ,@val))))))))))

	      ((-)
	       (case len
		 ((0) form)
		 ((1) ; negate
		  (if (number? (car args))
		      (- (car args))
		      (if (not (list? (car args)))
			  `(- ,@args)
			  (case (length (car args))
			    ((2) (if (eq? (caar args) '-)
				     (cadar args)          ; (- (- x)) -> x
				     `(- ,@args)))
			    ((3) (if (eq? (caar args) '-)
				     `(- ,(caddar args) ,(cadar args)) ; (- (- x y)) -> (- y x)
				     `(- ,@args)))
			    (else `(- ,@args))))))
		 ((2) 
		  (if (just-rationals? args)
		      (apply - args)
		      (if (eqv? (car args) 0)
			  `(- ,(cadr args))                ; (- 0 x) -> (- x)
			  (if (eqv? (cadr args) 0)
			      (car args)                   ; (- x 0) -> x
			      (if (equal? (car args) (cadr args))
				  0                        ; (- x x)
				  (if (and (pair? (car args))
					   (eq? (caar args) '-)
					   (> (length (car args)) 2))
				      `(- ,@(cdar args) ,(cadr args)) ; (- (- x y) z) -> (- x y z) but leave (- (- x) ...)
				      `(- ,@args)))))))
		 (else 
		  (let ((val (remove-all 0 (splice-if (lambda (x) (eq? x '+)) (cdr args)))))
		    (if (every? (lambda (x) (or (not (number? x)) (rational? x))) val)
			(let ((rats (collect-if list rational? val)))
			  (if (> (length rats) 1)
			      (let ((y (apply + rats)))
				(if (zero? y)
				    (set! val (collect-if list (lambda (x) (not (number? x))) val))
				    (set! val (cons y (collect-if list (lambda (x) (not (number? x))) val))))))))
		    (set! val (cons (car args) val))
		    (let ((first-arg (car args))
			  (nargs (cdr val)))
			(if (member first-arg nargs)
			    (begin
			      (set! nargs (remove first-arg nargs)) ; remove once
			      (set! first-arg 0)))
			(if (null? nargs)
			    first-arg                     ; (- x 0 0 0)?
			    (if (and (eqv? first-arg 0)
				     (= (length nargs) 1))
				(if (number? (car nargs))
				    (- (car nargs))
				    `(- ,(car nargs)))    ; (- 0 0 0 x)?
				`(- ,@(cons first-arg nargs)))))))))
	      
	      ((/)
	       (case len
		 ((0) form)
		 ((1) ; invert
		  (if (number? (car args))
		      (if (zero? (car args))
			  `(/ ,(car args))
			  (/ (car args)))
		      (if (pair? (car args))
			  (if (and (= (length (car args)) 2)
				   (eq? (caar args) '/))
			      (cadar args)
			      `(/ ,@args))
			  `(/ ,@args))))
		 ((2)
		  (if (and (just-rationals? args)
			   (not (zero? (cadr args))))
		      (apply / args)                          ; including (/ 0 12) -> 0
		      (let ((arg1 (car args))
			    (arg2 (cadr args)))
			(if (eqv? arg1 1)                 ; (/ 1 x) -> (/ x)
			    `(/ ,arg2)
			    (if (eqv? arg2 1)
				arg1                      ; (/ x 1) -> x
				(if (and (pair? arg1)     ; (/ (log x) (log y)) -> (log x y)
					 (= (length arg1) 2)
					 (pair? arg2)
					 (= (length arg2) 2)
					 (eq? (car arg1) 'log)
					 (eq? (car arg2) 'log))
				    `(log ,(cadr arg1) ,(cadr arg2))
				    (if (and (pair? arg1)
					     (eq? (car arg1) '/)
					     (pair? arg2)
					     (eq? '/ (car arg2)))
					(let ((a1 (if (null? (cddr arg1)) `(/ 1 ,(cadr arg1)) arg1))
					      (a2 (if (null? (cddr arg2)) `(/ 1 ,(cadr arg2)) arg2)))
					  (simplify-numerics `(/ (* ,(cadr a1) ,@(cddr a2)) (* ,@(cddr a1) ,(cadr a2))) env))
					`(/ ,@args))))))))

		 (else 
		  (if (and (just-rationals? args)
			   (not (memv 0 (cdr args)))
			   (not (memv 0.0 (cdr args))))
		      (apply / args)
		      (let ((nargs                      ; (/ x a (* b 1 c) d) -> (/ x a b c d) but not short cases
			     (remove-all 1 (splice-if (lambda (x) (eq? x '*)) (cdr args)))))
			(if (null? nargs) ; (/ x 1 1) -> x
			    (car args)
			    `(/ ,@(cons (car args) nargs))))))))
	      
	      ((sin cos asin acos sinh cosh tanh asinh acosh atanh exp)
	       (if (= len 1)
		   (if (and (pair? (car args))
			    (= (length (car args)) 2)
			    (eq? (caar args) (inverse-op (car form))))
		       (cadar args)
		       (if (eqv? (car args) 0)
			   (case (car form)
			     ((sin asin sinh asinh tanh atanh) 0)
			     ((exp cos cosh) 1)
			     (else `(,(car form) ,@args)))
			   (if (and (eq? (car form) 'cos)
				    (pair? (car args))
				    (eq? (caar args) '-)
				    (null? (cddar args)))
			       `(cos ,(cadar args))
			       (if (eq? (car args) 'pi)
				   (case (car form)
				     ((sin) 0.0)
				     ((cos) 1.0)
				     (else `(,(car form) ,@args)))
				   (if (eqv? (car args) 0.0)
				       (apply (symbol->value (car form)) '(0.0))
				       (if (and (eq? (car form) 'exp) ; (exp (* a (log b))) -> (expt b a)
						(pair? (car args))
						(eq? (caar args) '*))
					   (let ((targ (cdar args)))
					     (if (= (length targ) 2)
						 (if (and (pair? (car targ))
							  (eq? (caar targ) 'log)
							  (pair? (cdar targ))
							  (null? (cddar targ)))
						     `(expt ,(cadar targ) ,(cadr targ))
						     (if (and (pair? (cadr targ))
							      (eq? (caadr targ) 'log) 
							      (pair? (cdadr targ))
							      (null? (cddadr targ)))
							 `(expt ,(cadadr targ) ,(car targ))
							 `(,(car form) ,@args)))
						 `(,(car form) ,@args)))
				       `(,(car form) ,@args)))))))
		   `(,(car form) ,@args)))
	      
	      ((log)
	       (if (pair? args)
		   (if (eqv? (car args) 1)
		       0
		       (if (and (= len 1)
				(pair? (car args))
				(= (length (car args)) 2)
				(eq? (caar args) 'exp))
			   (cadar args)
			   (if (and (= len 2)
				    (equal? (car args) (cadr args)))
			       (if (integer? (car args))
				   1
				   1.0)
			       `(log ,@args))))
		   form))
	      
	      ((sqrt)
	       (if (pair? args)
		   (if (and (rational? (car args))
			    (= (car args) (* (sqrt (car args)) (sqrt (car args)))))
		       (sqrt (car args)) ; don't collapse (sqrt (* a a)), a=-1 for example
		       `(sqrt ,@args))
		   form))
	      
	      ((floor round ceiling truncate)
	       (if (= len 1)
		   (if (number? (car args))
		       (catch #t (lambda () 
				   (apply (symbol->value (car form)) args)) 
			      (lambda any 
				`(,(car form) ,@args)))
		       (if (and (pair? (car args))
				(integer-result? (caar args)))
			   (car args)
			   `(,(car form) ,@args)))
		   form))
	      
	      ((abs magnitude)
	       (if (= len 1)
		   (if (and (pair? (car args))
			    (memq (caar args) '(abs magnitude denominator)))
		       (car args)
		       (if (rational? (car args))
			   (abs (car args))
			   (if (and (pair? (car args))       ; (abs (modulo x 2)) -> (modulo x 2)
				    (eq? (caar args) 'modulo)
				    (= (length (car args)) 3)
				    (number? (caddar args))
				    (positive? (caddar args)))
			       (car args)
			       (if (and (pair? (car args))   ; (abs (- x)) -> (abs x)
					(eq? (caar args) '-)
					(pair? (cdar args))
					(null? (cddar args)))
				   `(,(car form) ,(cadar args))
				   `(,(car form) ,@args)))))
		   form))
	      
	      ((imag-part)
	       (if (= len 1)
		   (if (or (real? (car args))
			   (and (pair? (car args))
				(real-result? (caar args))))
		       0.0
		       `(imag-part ,@args))
		   form))
	      
	      ((real-part)
	       (if (= len 1)
		   (if (or (real? (car args))
			   (and (pair? (car args))
				(real-result? (caar args))))
		       (car args)
		       `(real-part ,@args))
		   form))
	      
	      ((denominator)
	       (if (= len 1)
		   (if (or (integer? (car args))
			   (and (pair? (car args))
				(integer-result? (caar args))))
		       1
		       `(denominator ,(car args)))
		   form))

	      ((numerator)
	       (if (= len 1)
		   (if (or (integer? (car args))
			   (and (pair? (car args))
				(integer-result? (caar args))))
		       (car args)
		       (if (rational? (car args))
			   (numerator (car args))
			   `(numerator ,(car args))))
		   form))
	      
	      ((random)
	       (if (and (= len 1)
			(number? (car args)))
		   (if (and (integer? (car args))
			    (= (car args) 0))
		       0
		       (if (morally-equal? (car args) 0.0)
			   0.0
			   `(random ,@args)))
		   `(random ,@args)))
	      ;; what about (* 2.0 (random 1.0)) and the like?
	      ;;   this is trickier than it appears: (* 2.0 (random 3)) etc

	      ((complex)
	       (if (and (= len 2)
			(morally-equal? (cadr args) 0.0)) ; morally so that 0 matches
		   (car args)
		   `(complex ,@args)))
	       
	      ((rationalize lognot ash modulo remainder quotient)
	       (if (just-rationals? args)
		   (catch #t ; catch needed here for things like (ash 2 64)
		     (lambda ()
		       (apply (symbol->value (car form)) args))
		     (lambda ignore
		       `(,(car form) ,@args))) ; use this form to pick up possible arg changes
		   `(,(car form) ,@args)))
	      
	      ((expt) 
	       (if (= len 2)
		   (if (and (eqv? (car args) 0)
			    (not (eqv? (cadr args) 0)))
		       0
		       (if (and (eqv? (cadr args) 0)
				(not (eqv? (car args) 0)))
			   1
			   (if (eqv? (car args) 1)
			       1
			       (if (eqv? (cadr args) 1)
				   (car args)
				   (if (eqv? (cadr args) -1)
				       `(/ ,(car args))
				       (if (just-rationals? args)
					   (catch #t
					     (lambda ()
					       (let ((val (apply expt args)))
						 (if (integer? val)
						     val
						     `(expt ,@args))))
					     (lambda args
					       `(expt ,@args)))
					   `(expt ,@args)))))))
		   form))

	      ((angle)
	       (if (pair? args)
		   (if (eqv? (car args) -1)
		       'pi
		       (if (or (morally-equal? (car args) 0.0)
			       (eq? (car args) 'pi))
			   0.0
			   `(angle ,@args)))
		   form))

	      ((atan)
	       (if (and (= len 1)
			(pair? (car args))
			(= (length (car args)) 3)
			(eq? (caar args) '/))
		   `(atan ,@(cdar args))
		   `(atan ,@args)))
	      
	      ((inexact->exact)
	       (if (= len 1)
		   (if (or (rational? (car args))
			   (and (pair? (car args))
				(or (rational-result? (caar args))
				    (integer-result? (caar args)))))
		       (car args)
		       (if (number? (car args))
			   (catch #t (lambda () (inexact->exact (car args))) (lambda any `(inexact->exact ,@args)))
			   `(inexact->exact ,@args)))
		   form))
	      
	      ((logior)
	       (set! args (remove-duplicates (remove-all 0 (splice-if (lambda (x) (eq? x 'logior)) args))))
	       (if (every? (lambda (x) (or (not (number? x)) (integer? x))) args)
		   (let ((rats (collect-if list integer? args)))
		     (if (> (length rats) 1)
			 (let ((y (apply logior rats)))
			   (if (zero? y)
			       (set! args (collect-if list (lambda (x) (not (number? x))) args))
			       (set! args (cons y (collect-if list (lambda (x) (not (number? x))) args))))))))
	       (if (null? args)           ; (logior) -> 0
		   0
		   (if (null? (cdr args)) ; (logior x) -> x
		       (car args)
		       (if (memv -1 args)
			   -1
			   (if (just-integers? args)
			       (apply logior args)
			       `(logior ,@args))))))
	      
	      ((logand)
	       (set! args (remove-duplicates (remove-all -1 (splice-if (lambda (x) (eq? x 'logand)) args))))
	       (if (every? (lambda (x) (or (not (number? x)) (integer? x))) args)
		   (let ((rats (collect-if list integer? args)))
		     (if (> (length rats) 1)
			 (let ((y (apply logand rats)))
			   (if (= y -1)
			       (set! args (collect-if list (lambda (x) (not (number? x))) args))
			       (set! args (cons y (collect-if list (lambda (x) (not (number? x))) args))))))))
	       (if (null? args)
		   -1
		   (if (null? (cdr args)) ; (logand x) -> x
		       (car args)
		       (if (memv 0 args)
			   0
			   (if (just-integers? args)
			       (apply logand args)
			       `(logand ,@args))))))
	      ;; (logand 1 (logior 2 x)) -> (logand 1 x)? 
	      ;; (logand 1 (logior 1 x)) -> 1
	      ;; (logand 3 (logior 1 x))?
	      ;; similarly for (logior...(logand...))

	      ((logxor)
	       (set! args (splice-if (lambda (x) (eq? x 'logxor)) args)) ; is this correct??
	       (if (null? args)
		   0
		   (if (null? (cdr args)) ; (logxor x) -> x??
		       (car args)
		       (if (just-integers? args)
			   (apply logxor args)
			   (if (and (= len 2)
				    (equal? (car args) (cadr args)))
			       0
			       `(logxor ,@args))))))
		   
	      ((gcd)
	       (set! args (remove-duplicates (splice-if (lambda (x) (eq? x 'gcd)) args)))
	       (if (null? args)
		   0
		   ;; here and in lcm, if just 1 arg -> (abs arg) 
		   (if (memv 1 args)
		       1
		       (if (just-integers? args)
			   (catch #t  ; maybe (gcd -9223372036854775808 -9223372036854775808)
			     (lambda ()
			       (apply gcd args))
			     (lambda ignore
			       `(gcd ,@args)))
			   (if (null? (cdr args))
			       `(abs ,(car args))
			       (if (eqv? (car args) 0)
				   `(abs ,(cadr args))
				   (if (eqv? (cadr args) 0)
				       `(abs ,(car args))
				       `(gcd ,@args))))))))
	      
	      ((lcm)
	       (set! args (remove-duplicates (splice-if (lambda (x) (eq? x 'lcm)) args)))
	       (if (null? args)
		   1
		   (if (memv 0 args)
		       0
		       (if (just-integers? args)
			   (catch #t
			     (lambda ()
			       (apply lcm args))
			     (lambda ignore
			       `(lcm ,@args)))
			   (if (null? (cdr args))
			       `(abs ,(car args))
			       `(lcm ,@args))))))
	      
	      ((max min)
	       (if (pair? args)
		   (begin
		     (set! args (remove-duplicates (splice-if (lambda (x) (eq? x (car form))) args)))
		     (if (= len 1)
			 (car args)
			 (if (just-reals? args)
			     (apply (symbol->value (car form)) args)
			     (let ((nums (collect-if list number? args))
				   (other (if (eq? (car form) 'min) 'max 'min)))
			       (if (and (pair? nums)
					(just-reals? nums)) ; non-real case checked elsewhere (later)
				   (let ((relop (if (eq? (car form) 'min) >= <=)))
				     (if (> (length nums) 1)
					 (set! nums (list (apply (symbol->value (car form)) nums))))
				     (let ((new-args (append nums (collect-if list (lambda (x) (not (number? x))) args))))
				       (let ((c1 (car nums)))
					 (set! new-args (collect-if list (lambda (x)
									   (or (not (pair? x))
									       (<= (length x) 2)
									       (not (eq? (car x) other))
									       (let ((c2 (find-if number? (cdr x))))
										 (or (not c2)
										     (relop c1 c2)))))
								    new-args)))
				       (if (< (length new-args) (length args))
					   (set! args new-args)))))
				     ;; if (max c1 (min c2 . args1) . args2) where (>= c1 c2) -> (max c1 . args2)
				     ;; if (min c1 (max c2 . args1) . args2) where (<= c1 c2) -> (min c1 . args2)
			       
			       ;; there are more such cases: (max x (min x 3)) -> x and (min x (max x c)) -> x
			       ;; (max a b) is (- (min (- a) (- b))), but that doesn't help here -- the "-" gets in our way
			       (if (null? (cdr args)) ; (max (min x 3) (min x 3)) -> (max (min x 3)) -> (min x 3)
				   (car args)
				   (if (and (null? (cddr args))   ; (max|min x (min|max x ...) -> x
					    (or (and (pair? (car args))
						     (eq? (caar args) other)
						     (symbol? (cadr args))   ; actually this is probably not needed, but I want to avoid (random ...)
						     ;; perhaps instead use not min/max 
						     (member (cadr args) (car args)))
						(and (pair? (cadr args))
						     (eq? (caadr args) other)
						     (symbol? (car args))
						     (member (car args) (cadr args)))))
				       ((if (pair? (car args)) cadr car) args)
				       `(,(car form) ,@args)))))))
		   form))
	      
	      (else `(,(car form) ,@args))))))
      
      
      (define (->eqf x)
	(case x
	  ((char?) '(eqv? char=?))
	  ((integer? rational? real? number? complex?) '(eqv? =))
	  ((symbol? keyword? boolean?)'(eq? eq?))
	  ((string? byte-vector?) '(equal? string=?))
	  ((null?) '(eq? null?))
	  ((pair? vector? float-vector? int-vector? hash-table?) '(equal? equal))
	  (else '(#t #t))))
      
      (define (eqf selector)
	(if (symbol? selector)
	    '(#t #t)
	    (if (not (pair? selector))
		(->eqf (->type selector))
		(if (eq? (car selector) 'quote)
		    (if (symbol? (cadr selector))
			'(eq? eq?)
			(if (null? (cadr selector))
			    '(eq? null?)
			    (if (char? (cadr selector))
				'(eqv? char=?)
				'(equal? equal?))))
		    (if (symbol? (car selector))
			(->eqf (return-type (car selector)))
			'(#t #t))))))
	   

      (define (check-special-cases name head form env)

	(case head

	  ((memq assq memv assv member assoc)
	   (define (list-one? p)
	     (and (pair? p)
		  (pair? (cdr p))
		  (null? (cddr p))
		  (or (and (eq? (car p) 'list)
			   cadr)
		      (and (eq? (car p) 'quote)
			   (pair? (cadr p))
			   (null? (cdadr p))
			   (if (symbol? (caadr p))
			       (lambda (x) (list 'quote (caadr x)))
			       caadr)))))
			     
	   (if (= (length form) 4)
	       (let ((func (list-ref form 3)))
		 (if (symbol? func)
		     (let ((sig (procedure-signature (symbol->value func))))
		       (if (and sig
				(not (eq? (car sig) 'boolean?)))
			   (lint-format "~A is a questionable ~A function" name func head)))
		     (if (and (pair? func)
			      (= (length func) 3)
			      (eq? (car func) 'lambda)
			      (pair? (cadr func))
			      (pair? (caddr func)))
			 (if (not (member (length (cadr func)) '(2 -1)))
			     (lint-format "~A equality function (optional 3rd arg) should take two arguments" name head)
			     (if (eq? head 'member)
				 (let ((eq (caddr func))
				       (args (cadr func)))
				   (if (and (memq (car eq) '(eq? eqv? equal?))
					    (eq? (car args) (cadr eq))
					    (pair? (caddr eq))
					    (eq? (car (caddr eq)) 'car)
					    (pair? (cdr (caddr eq)))
					    (pair? (cdr args))
					    (eq? (cadr args) (cadr (caddr eq))))
				       (lint-format "member might perhaps be ~A"
						    name
						    (if (or (eq? func 'eq?)
							    (eq? (car (caddr func)) 'eq?))
							'assq
							(if (eq? (car (caddr func)) 'eqv?) 
							    'assv 
							    'assoc))))))))))

	       (when (= (length form) 3)
		 (let ((selector (cadr form))
		       (items (caddr form)))
		   (let ((current-eqf (case head ((memq assq) 'eq?) ((memv assv) 'eqv?) (else 'equal?)))
			 (selector-eqf (eqf selector))
			 (one-item (and (memq head '(memq memv member)) (list-one? (caddr form)))))
		     ;; one-item assoc doesn't simplify cleanly
		     
		     (if one-item
			 (let* ((target (one-item items))
				(iter-eqf (eqf target)))
			   (lint-format "perhaps ~A" name 
					(if (or (symbol? target)
						(and (pair? target)
						     (not (eq? (car target) 'quote))))
					    (lists->string form `(,(cadr iter-eqf) ,selector ',target))
					    (lists->string form `(,(cadr iter-eqf) ,selector ,target)))))

			 (letrec ((duplicates? (lambda (lst fnc)
						 (and (pair? lst)
						      (or (fnc (car lst) (cdr lst))
							  (duplicates? (cdr lst) fnc)))))
				  (duplicate-constants? (lambda (lst fnc)
						 (and (pair? lst)
						      (or (and (constant? (car lst))
							       (fnc (car lst) (cdr lst)))
							  (duplicate-constants? (cdr lst) fnc))))))
			   (if (and (pair? items)
				    (or (eq? (car items) 'list)
					(and (eq? (car items) 'quote)
					     (pair? (cadr items)))))
			       (let ((baddy #f))
				 (catch #t 
				   (lambda () 
				     (if (eq? (car items) 'list) ; TODO: restrict to constants?
					 (set! baddy (duplicate-constants? (cdr items) (symbol->value head)))
					 (set! baddy (duplicates? (cadr items) (symbol->value head)))))
				   (lambda args #f))
				 (if (pair? baddy)
				     (lint-format "duplicated entry ~S in ~A" name (car baddy) items))))
					    
			   (if (and (symbol? (car selector-eqf))
				    (not (eq? (car selector-eqf) current-eqf)))
			       (lint-format "~A: perhaps ~A -> ~A" name form head 
					    (if (memq head '(memq memv member))
						(case (car selector-eqf) ((eq?) 'memq) ((eqv?) 'memv) ((equal?) 'member))
						(case (car selector-eqf) ((eq?) 'assq) ((eqv?) 'assv) ((equal?) 'assoc))))))))

		   (when (and (memq head '(memq memv))
			      (pair? items)
			      (eq? (car items) 'quote)
			      (pair? (cadr items)))
		     (let ((bad (find-if (lambda (x)
					   (not (or (symbol? x)
						    (char? x)
						    (number? x)
						    (procedure? x) ; (memq abs '(1 #_abs 2)) !
						    (memq x '(#f #t () #<unspecified> #<undefined> #<eof>)))))
					 (cadr items))))
		       (if bad
			   (if (pair? bad)
			       (if (eq? (car bad) 'quote)
				   (lint-format "stray quote? ~A" name form)
				   (if (eq? (car bad) 'unquote)
				       (lint-format "stray comma? ~A" name form)
				       (lint-format "pointless list member: ~S in ~A" name bad form)))
			       (lint-format "pointless list member: ~S in ~A" name bad form)))))))))

	  ((if)
	   (let ((len (length form)))
	     (if (> len 4)
		 (lint-format "if has too many clauses: ~A" name form)
		 (if (< len 3)
		     (lint-format "if has too few clauses: ~A" name form)
		     (let ((test (cadr form))
			   (true (caddr form))
			   (false (if (= len 4) (cadddr form) 'no-false)))

		       (if (never-false test)
			   (lint-format "if test is never false: ~A" name form)
			   (if (and (never-true test) true) ; complain about (if #f #f) later
 			       (lint-format "if test is never true: ~A" name form)))

		       (let ((expr (simplify-boolean test () () env)))
					;(format *stderr* "expr simplified: ~S~%" expr)
			 
			 (if (not (side-effect? test env))
			     (if (or (equal? test true) (equal? expr true))
				 (lint-format "perhaps ~A" name 
					      (lists->string form 
							     (if (eq? false 'no-false)
								 (simplify-boolean `(or ,expr #<unspecified>) () () env)
								 (simplify-boolean `(or ,expr ,false) () () env))))
				 (if (or (equal? test false) (equal? expr false))
				     (lint-format "perhaps ~A" name 
						  (lists->string form (simplify-boolean `(and ,expr ,true) () () env))))))
			 
			 (if (pair? false)
			     (begin
			       (if (and (eq? (car false) 'if)
					(pair? (cdr false))
					(pair? (cadr false))
					(eq? (caadr false) 'not)
					(or (equal? test (cadr (cadr false))) (equal? expr (cadr (cadr false))))
					(not (side-effect? test env)))
				   (lint-format "pointless repetition of if test: ~A" name (lists->string form `(if ,expr ,true ,(caddr false)))))
			       
			       (if (and (eq? (car false) 'if) ; (if test0 expr (if test1 expr)) -> if (or test0 test1) expr) 
					(equal? true (caddr false)))
				   (let ((test1 (simplify-boolean `(or ,expr ,(cadr false)) () () env)))
				     (lint-format "perhaps ~A" name (lists->string form `(if ,test1 ,true ,@(cdddr false))))))
			       
			       (if (and (pair? true) ; (if expr (set! var #t | #f) (set! var #f | #t)) -> (set! var expr|(not expr))??
					(eq? (car true) 'set!)
					(eq? (car false) 'set!)
					(eq? (cadr true) (cadr false))
					(boolean? (caddr true))
					(boolean? (caddr false))
					(not (eq? (caddr true) (caddr false))))
				   (lint-format "perhaps ~A"
						name
						(lists->string form 
							       (if (caddr true)
								   `(set! ,(cadr true) ,expr)
								   `(set! ,(cadr true) (not ,expr)))))))
			     (if (eq? false 'no-false)      ; no false branch
				 (begin
				   (if (and (pair? test)    ; (if (pair? lst) (for-each f lst)) -> (for-each f lst)
					    (eq? (car test) 'pair?)
					    (pair? true)
					    (memq (car true) '(map for-each))
					    (eq? (cadr test) (caddr true)))
				       (lint-format "perhaps ~A" name (lists->string form true)))
				   
				   (if (and (pair? true)     ; (if test0 (if test1 expr)) -> (if (and test0 test1) expr) (else #<unspecified>)
					    (eq? (car true) 'if)
					    (null? (cdddr true)))
				       (let ((test1 (simplify-boolean `(and ,expr ,(cadr true)) () () env)))
					 (lint-format "perhaps ~A" name (lists->string form `(if ,test1 ,(caddr true)))))))))
			 
			 (if (eq? expr #t)
			     (lint-format "perhaps ~A" name (lists->string form true))
			     (if (not expr)
				 (if (eq? false 'no-false)
				     (if true                             ; (if #f x) as a kludgey #<unspecified>
					 (lint-format "perhaps ~A" name (lists->string form #<unspecified>)))
				     (lint-format "perhaps ~A" name (lists->string form false)))
				 (if (not (equal? true false))
				     (if (boolean? true)
					 (if (boolean? false) ; !  (if expr #t #f) turned into something less verbose
					     (lint-format "perhaps ~A" name 
							  (lists->string form (if true 
										  expr 
										  (simplify-boolean `(not ,expr) () () env))))
					     (lint-format "perhaps ~A" name 
							  (lists->string form (if true
										  (if (eq? false 'no-false)
										      expr
										      (simplify-boolean `(or ,expr ,false) () () env))
										  (simplify-boolean 
										   (if (eq? false 'no-false)
										       `(not ,expr)
										       `(and (not ,expr) ,false))
										   () () env)))))
					 (if (boolean? false)
					     (lint-format "perhaps ~A" name 
							  (lists->string form (simplify-boolean
									       (if false 
										   (if (and (pair? expr) (eq? (car expr) 'not))
										       `(or ,(cadr expr) ,true) 
										       `(or (not ,expr) ,true))
										   `(and ,expr ,true))
									       () () env)))))
				     (if (= len 4)
					 (if (not (side-effect? test env))
					     (lint-format "if is not needed here: ~A" name (lists->string form true))
					     (lint-format "if is not needed here: ~A" name (lists->string form `(begin ,expr ,true))))))))))))))

	  ((car cdr 
	    caar cadr cddr cdar
	    caaar caadr caddr cdddr cdaar cddar cadar cdadr
            cadddr cddddr)
	   (let ((cxr? (lambda (s)
			 (and (pair? (cdr s))
			      (pair? (cadr s))
			      (memq (caadr s) '(car cdr cadr cddr cdar cdddr cddddr))))))
	     (if (and (not (= line-number last-simplify-boolean-line-number))
		      (cxr? form))
		 (let* ((arg1 (cadr form))
			(arg2 (and arg1 (cxr? arg1) (cadr arg1)))
			(arg3 (and arg2 (cxr? arg2) (cadr arg2))))
		   (set! last-simplify-boolean-line-number line-number)
		   (let* ((innards (lambda (c) (case c ((car) "a") ((cdr) "d") ((caar) "aa") ((cadr) "ad") ((cddr) "dd") ((cdar) "da")
						       ((caaar) "aaa") ((caadr) "aad") ((caddr) "add") ((cdddr) "ddd") 
						       ((cdaar) "daa") ((cddar) "dda") ((cdadr) "dad") ((cadar) "ada")
						       ((cddddr) "dddd") ((cadddr) "addd"))))
			  (cxr (string-append (innards (car form)) 
					      (innards (car arg1)) 
					      (if arg2 (innards (car arg2)) "")
					      (if arg3 (innards (car arg3)) ""))))
		     (if (< (length cxr) 5)
			 (lint-format "perhaps ~A" name (lists->string form `(,(string->symbol (string-append "c" cxr "r")) ,(cadr (or arg3 arg2 arg1)))))
			 ;; if it's car|cdr followed by cdr's, use list-ref|tail
			 (if (not (char-position #\a cxr))
			     (lint-format "perhaps ~A" name (lists->string form `(list-tail ,(cadr (or arg3 arg2 arg1)) ,(length cxr))))
			     (if (not (char-position #\a (substring cxr 1)))
				 (lint-format "perhaps ~A" name (lists->string form `(list-ref ,(cadr (or arg3 arg2 arg1)) ,(- (length cxr) 1))))
				 (set! last-simplify-boolean-line-number -1))))))))

	   (if (and (memq head '(car cdr))
		    (pair? (cadr form))
		    (eq? (car (cadr form)) 'cons))
	       (lint-format "(~A~A) is the same as~A"
			    name head
			    (truncated-list->string (cadr form))
			    (if (eq? head 'car)
				(truncated-list->string (cadadr form))
				(truncated-list->string (caddr (cadr form)))))))

	  ((and or not)
	   (if (not (= line-number last-simplify-boolean-line-number))
	       (let ((val (simplify-boolean form () () env)))
		 (set! last-simplify-boolean-line-number line-number)
		 (if (not (equal? form val))
		     (lint-format "perhaps ~A" name (lists->string form val))))))

	  ((=)
	   (if (and (> (length form) 2)
		    (any-real? (cdr form)))
	       (lint-format "= can be troublesome with floats: ~A" name (truncated-list->string form)))
	   (let ((cleared-form (cons = (remove-if (lambda (x) (not (number? x))) (cdr form)))))
	     (if (and (> (length cleared-form) 2)
		      (not (checked-eval cleared-form)))
		 (lint-format "this comparison can't be true: ~A" name (truncated-list->string form))))
	   (when (and (= (length form) 3)
		      (eqv? (caddr form) 0))
	     (let ((arg (cadr form)))
	       (when (and (pair? arg)
			  (eq? (car arg) '-)
			  (= (length arg) 3))
		 (lint-format "perhaps ~A" name (lists->string form `(= ,(cadr arg) ,(caddr arg))))))))

	  ((< > <= >=) ; '= handled above
	   (let ((cleared-form (cons (car form) ; keep operator
				     (remove-if (lambda (x) 
						  (not (number? x))) 
						(cdr form)))))
	     (if (and (> (length cleared-form) 2)
		      (not (checked-eval cleared-form)))
		 (lint-format "this comparison can't be true: ~A" name (truncated-list->string form))))
	   (when (and (= (length form) 3)
		      (eqv? (caddr form) 0))
	     (let ((arg (cadr form)))
	       (if (and (pair? arg)
			(eq? (car arg) '-)
			(= (length arg) 3))
		   (lint-format "perhaps ~A" name (lists->string form `(,(car form) ,(cadr arg) ,(caddr arg))))))))
		   ;; could change (> x 0) to (positive? x) and so on, but the former is clear and ubiquitous

	  ((char<? char>? char<=? char>=? char=? 
	    char-ci<? char-ci>? char-ci<=? char-ci>=? char-ci=?)
	   (let ((cleared-form (cons (car form) ; keep operator
				     (remove-if (lambda (x) 
						  (not (char? x))) 
						(cdr form)))))
	     (if (and (> (length cleared-form) 2)
		      (not (checked-eval cleared-form)))
		 (lint-format "this comparison can't be true: ~A" name (truncated-list->string form)))))
	     
	  ((string<? string>? string<=? string>=? string=? 
	    string-ci<? string-ci>? string-ci<=? string-ci>=? string-ci=?)
	   (let ((cleared-form (cons (car form) ; keep operator
				     (remove-if (lambda (x) 
						  (not (string? x))) 
						(cdr form)))))
	     (if (and (> (length cleared-form) 2)
		      (not (checked-eval cleared-form)))
		 (lint-format "this comparison can't be true: ~A" name (truncated-list->string form)))))
	     
	  ((call-with-exit)
	   (let ((return (and (pair? (cdr form))
			      (pair? (cadr form))
			      (eq? (caadr form) 'lambda)
			      (pair? (cdadr form))
			      (pair? (cadadr form))
			      (car (cadadr form)))))
	     (if (symbol? return)
		 (let ((body (cddadr form)))
		   (if (not (tree-member return body))
		       (lint-format "exit-function appears to be unused: ~A" name (truncated-list->string form)))))))

	  ((call-with-input-string call-with-input-file call-with-output-file)
	   ;; call-with-output-string func is the first arg, not second, but these checks get no hits
	   (let ((port (and (pair? (cdr form))
			    (pair? (cddr form))
			    (pair? (caddr form))
			    (eq? (caaddr form) 'lambda)
			    (pair? (cdaddr form))
			    (pair? (cadr (caddr form)))
			    (car (cadr (caddr form))))))
	     (if (symbol? port)
		 (let ((body (cddr (caddr form))))
		   (if (not (tree-member port body))
		       (lint-format "port appears to be unused: ~A" name (truncated-list->string form)))))))

	  ((/)
	   (if (pair? (cdr form))
	       (if (and (null? (cddr form))
			(number? (cadr form))
			(zero? (cadr form)))
		   (lint-format "attempt to invert zero: ~A" name (truncated-list->string form))
		   (if (and (pair? (cddr form))
			    (memv 0 (cddr form)))
		       (lint-format "attempt to divide by 0: ~A" name (truncated-list->string form))))))
	  
	  ((copy)
	   (if (and (pair? (cdr form))
		    (or (number? (cadr form))
			(boolean? (cadr form))
			(char? (cadr form))
			(and (pair? (cadr form))
			     (memq (caadr form) '(copy string-copy)))))
	       (lint-format "~A could be ~A" name form (cadr form))
	       (if (and (pair? (cdr form)) (equal? (cadr form) '(owlet)))
		   (lint-format "~A could be (owlet): owlet is copied internally" name form))))
	  
	  ((string-copy)
	   (if (and (pair? (cdr form))
		    (pair? (cadr form))
		    (memq (caadr form) '(copy string-copy)))
	       (lint-format "~A could be ~A" name form (cadr form))))

	  ((string)
	   (if (every? (lambda (x) (and (char? x) (not (member x '(#\null #\newline #\escape))))) (cdr form)) ;#\linefeed -> #\newline in reader
	       (lint-format "~A could be ~S" name form (apply string (cdr form)))))

	  ((string? number?)
	   (if (and (pair? (cdr form))
		    (pair? (cadr form))
		    (eq? (caadr form) (if (eq? head 'string?) 'number->string 'string->number)))
	       (lint-format "perhaps ~A" name (lists->string form (cadr form)))))

	  ((vector-ref list-ref hash-table-ref let-ref int-vector-ref float-vector-ref)
	   (unless (= line-number last-checker-line-number)
	     (if (= (length form) 3)
		 (let ((seq (cadr form)))
		   (if (and (pair? seq)
			    (eq? (car seq) head) ; perhaps instead: (memq (car seq) '(vector-ref list-ref hash-table-ref let-ref))
			    (= (length seq) 3))
		       (let ((seq1 (cadr seq)))
			 (if (and (pair? seq1)
				  (eq? (car seq1) head)
				  (= (length seq1) 3))
			     (lint-format "perhaps ~A" name (lists->string form `(,(cadr seq1) ,(caddr seq1) ,(caddr seq) ,(caddr form))))
			     (lint-format "perhaps ~A" name (lists->string form `(,seq1 ,(caddr seq) ,(caddr form)))))))))
	     (set! last-checker-line-number line-number)))

	  ((vector-set! list-set! hash-table-set! float-vector-set! int-vector-set!)
	   (if (= (length form) 4)
	       (let ((target (cadr form))
		     (index (caddr form))
		     (val (cadddr form)))
		 (if (and (pair? val)
			  (= (length val) 3)
			  (eq? target (cadr val))
			  (equal? index (caddr val))
			  (memq (car val) '(vector-ref list-ref hash-table-ref float-vector-ref int-vector-ref)))
		     (lint-format "redundant?: ~A" name (truncated-list->string form))
		     (if (and (pair? target) 
			      (memq (car target) '(vector-ref list-ref hash-table-ref float-vector-ref int-vector-ref)))
			 (lint-format "perhaps ~A" name (lists->string form `(set! (,@(cdr target) ,index) ,val)))
			 (if (or (code-constant? (cadr form))
				 (and (pair? (cadr form))
				      (memq (caadr form) '(make-vector vector make-string string make-list list append cons vector-append copy))))
			     (lint-format "perhaps ~A" name (lists->string form val))))))))
	  
	  ((object->string)
	   (if (pair? (cdr form))
	       (if (and (pair? (cadr form))
			(eq? (caadr form) 'object->string))
		   (lint-format "~A could be ~A" name form (cadr form))
		   (if (and (pair? (cddr form))
			    (not (pair? (caddr form)))
			    (or (not (symbol? (caddr form))) (keyword? (caddr form)))
			    (not (memq (caddr form) '(#f #t :readable))))
		       (lint-format "bad second argument: ~A" name (caddr form))))))

	  ((display)
	   (if (and (= (length form) 2)
		    (pair? (cadr form))
		    (eq? (caadr form) 'format)
		    (not (cadadr form)))
	       (lint-format "~A could be ~A" name form `(format #t ,@(cddadr form)))))

	  ((make-vector)
	   (if (and (= (length form) 4)
		    (code-constant? (caddr form))
		    (not (real? (caddr form)))
		    (eq? (cadddr form) #t))
	       (lint-format "~A won't create an homogeneous vector" name form)))

	  ((reverse list->vector vector->list list->string string->list symbol->string string->symbol number->string)
	   ;; not string->number -- no point in copying a number and it's caught below
	   (let ((inverses '((reverse . reverse) 
			     (list->vector . vector->list)
			     (vector->list . list->vector)
			     (symbol->string . string->symbol)
			     (string->symbol . symbol->string)
			     (list->string . string->list)
			     (string->list . list->string)
			     (number->string . string->number))))
	     (if (and (pair? (cdr form))
		      (pair? (cadr form))
		      (pair? (cdadr form))
		      (eq? (caadr form) (let ((p (assq head inverses))) (and (pair? p) (cdr p)))))
		 (lint-format "~A could be (copy ~A)" name form (cadadr form)))))

	  ((char->integer integer->char symbol->keyword keyword->symbol string->number)
	   (let ((inverses '((char->integer . integer->char)
			     (integer->char . char->integer)
			     (symbol->keyword . keyword->symbol)
			     (keyword->symbol . symbol->keyword)
			     (string->number . number->string))))
	     (if (and (pair? (cdr form))
		      (pair? (cadr form))
		      (pair? (cdadr form))
		      (eq? (caadr form) (let ((p (assq head inverses))) (and (pair? p) (cdr p)))))
		 (lint-format "~A could be ~A" name form (cadadr form)))))
	  
	  ((string-append)
	   (if (not (= line-number last-checker-line-number))
	       (let ((args (remove-all "" (splice-if (lambda (x) (eq? x 'string-append)) (cdr form)))))
		 (if (null? args)
		     (lint-format "perhaps ~A" name (lists->string form ""))
		     (if (null? (cdr args))
			 (lint-format "perhaps ~A, or use copy" name (lists->string form (car args)))
			 (if (every? string? args)
			     (lint-format "perhaps ~A" name (lists->string form (apply string-append args)))
			     (if (not (equal? args (cdr form)))
				 (lint-format "perhaps ~A" name (lists->string form `(string-append ,@args)))))))
		 (set! last-checker-line-number line-number))))

	  ((vector-append)
	   (if (not (= line-number last-checker-line-number))
	       (let ((args (remove-all #() (splice-if (lambda (x) (eq? x 'vector-append)) (cdr form)))))
		 (if (null? args)
		     (lint-format "perhaps ~A" name (lists->string form #()))
		     (if (null? (cdr args))
			 (lint-format "perhaps ~A" name (lists->string form (car args)))
			 (if (every? vector? args)
			     (lint-format "perhaps ~A" name (lists->string form (apply vector-append args)))
			     (if (not (equal? args (cdr form)))
				 (lint-format "perhaps ~A" name (lists->string form `(vector-append ,@args)))))))
		 (set! last-checker-line-number line-number))))

	  ((cons)
	   (if (and (= (length form) 3)
		    (pair? (caddr form))
		    (eq? (caaddr form) 'list))
	       (lint-format "perhaps ~A" name (lists->string form `(list ,(cadr form) ,@(cdaddr form))))))

	  ((append)
	   (unless (= line-number last-checker-line-number)
	     (set! last-checker-line-number line-number)
	     (letrec ((splice-append (lambda (lst)
				       (cond ((null? lst) ())
					     ((pair? lst)
					      (if (and (pair? (car lst))
						       (eq? (caar lst) 'append))
						  (if (null? (cdar lst))
						      (cons () (splice-append (cdr lst)))
						      (append (splice-append (cdar lst)) (splice-append (cdr lst))))
						  (cons (car lst) (splice-append (cdr lst)))))
					     (#t lst)))))
	       (let ((new-args (splice-append (cdr form))))     ; (append '(1) (append '(2) '(3))) -> (append '(1) '(2) '(3))
		 (let ((len1 (length new-args)))

		   (define (distribute-quote x)
		     (map (lambda (item)
			    (if (or (symbol? item)
				    (pair? item))
				`(quote ,item)
				item))
			  x))
	   
		   (define (append->list . items)
		     (let ((lst (list 'list)))
		       (for-each (lambda (item)
				   (set! lst (append lst (if (eq? (car item) 'list)
							     (cdr item)
							     (distribute-quote (cadr item))))))
				 items)
		       lst))
				   
		   (case len1
		     ((0)					; (append) -> ()
		      (lint-format "perhaps ~A" name (lists->string form ())))
		     ((1)                                 ; (append x) -> x
		      (lint-format "perhaps ~A" name (lists->string form (car new-args))))
		     ((2)
		      (if (or (null? (cadr new-args))           ; (append (list x) ()) -> (list x)
			      (quoted-null? (cadr new-args))
			      (equal? (cadr new-args) '(list)))
			  (lint-format "perhaps clearer: ~A" name (lists->string form `(copy ,(car new-args))))
			  (if (null? (car new-args))            ; (append () x) -> x
			      (lint-format "perhaps ~A" name (lists->string form (cadr new-args)))
			      (if (and (pair? (car new-args))   ; (append (list x y) '(z)) -> (list x y 'z)
				       (or (eq? (caar new-args) 'list)
					   (quoted-undotted-pair? (car new-args)))
				       (pair? (cadr new-args))
				       (or (eq? (caadr new-args) 'list)
					   (quoted-undotted-pair? (cadr new-args))))
				  (lint-format "perhaps ~A" name (lists->string form (apply append->list new-args)))
				  (if (not (equal? (cdr form) new-args))
				      (lint-format "perhaps ~A" name (lists->string form `(append ,@new-args))))))))
		     (else
		      (if (every? (lambda (item)
				    (and (pair? item)
					 (or (eq? (car item) 'list)
					     (quoted-undotted-pair? item))))
				  new-args)
			  (lint-format "perhaps ~A" name (lists->string form (apply append->list new-args)))
			  (if (not (equal? (cdr form) new-args))
			      (lint-format "perhaps ~A" name (lists->string form `(append ,@new-args))))))))))))

	  ((apply)
	   (let ((function? (lambda (f)
			      (or (and (symbol? f)
				       (let ((func (symbol->value f *e*)))
					 (or (procedure? func)
					     (let ((e (or (var-member f env) (hash-table-ref globals f))))
					       (and (var? e)
						    (let? (var-new e))
						    (memq ((var-new e) 'type) '(define define* lambda lambda*)))))))
				  (and (pair? f)
				       (memq (car f) '(lambda lambda*)))))))

	     (if (and (pair? (cdr form))
		      (not (symbol? (cadr form)))
		      (not (applicable? (cadr form))))
		 (lint-format "~S is not applicable: ~A" name (cadr form) (truncated-list->string form))
		 (let ((len (length form)))
		   (when (> len 2)
		     (if (and (not (list? (form (- len 1))))
			      (code-constant? (form (- len 1))))
			 (lint-format "last argument should be a list: ~A" name (truncated-list->string form))
			 (if (and (= len 3)
				  (pair? (caddr form))
				  (eq? (caaddr form) 'list)
				  ;; macros are different here
				  (function? (cadr form)))
			     (lint-format "perhaps ~A" name (lists->string form `(,(cadr form) ,@(cdaddr form))))
			     (if (and (or (not (every? code-constant? (cddr form)))
					  (catch #t
					    (lambda ()
					      (let ((val (eval form)))
						(lint-format "perhaps ~A -> ~S" name form val)
						#t))
					    (lambda args #f)))
				      (symbol? (cadr form)))
				 (let ((func (symbol->value (cadr form) *e*)))
				   (if (procedure? func)
				       (let ((ary (arity func)))
					 (if (and (pair? ary)
						  (> (- (length (cddr form)) 1) (cdr ary))) ; last apply arg might be var=()
					     (lint-format "too many arguments for ~A: ~A" name (cadr form) form)))))))))))))

	  ((format snd-display)
	   (if (< (length form) 3)
	       (begin
		 (if (< (length form) 2)
		     (lint-format "~A has too few arguments: ~A" name head (truncated-list->string form))
		     (if (and (pair? (cadr form))
			      (eq? (caadr form) 'format))
			 (lint-format "redundant format: ~A" name (truncated-list->string form))
			 (if (and (code-constant? (cadr form))
				  (not (string? (cadr form))))
			     (lint-format "format with one argument takes a string: ~A" name (truncated-list->string form)))))
		 env)
	       (let ((control-string (if (string? (cadr form)) (cadr form) (caddr form)))
		     (args (if (string? (cadr form)) (cddr form) (cdddr form))))
		 
		 (define (count-directives str name form)
		   (let ((curlys 0)
			 (dirs 0)
			 (pos (char-position #\~ str)))
		     (if pos
			 (let ((len (length str))
			       (tilde-time #t)) 
			   (do ((i (+ pos 1) (+ i 1)))
			       ((>= i len))
			     (let ((c (string-ref str i)))
			       (if tilde-time
				   (begin
				     (if (and (= curlys 0)
					      (not (memq c '(#\~ #\T #\t #\& #\% #\^ #\| #\newline #\}))) ; ~* consumes an arg
					      (not (call-with-exit
						    (lambda (return)
						      (do ((k i (+ k 1)))
							  ((= k len) #f)
							;; this can be confused by pad chars in ~T
							(if (and (not (char-numeric? (string-ref str k)))
								 (not (char=? (string-ref str k) #\,)))
							    (return (char-ci=? (string-ref str k) #\t))))))))
					 (begin
					   ;; the possibilities are endless, so I'll stick to the simplest
					   (if (not (vector-ref format-control-char (char->integer c)))
					       (lint-format "unrecognized format directive: ~C in ~S, ~S" name c str form))
					   (set! dirs (+ dirs 1))
					   
					   ;; ~n so try to figure out how many args are needed (this is not complete)
					   (when (char-ci=? c #\n)
					     (let ((j (+ i 1)))
					       (if (>= j len)
						   (lint-format "missing format directive: ~S" name str)
						   (begin
						     ;; if ,n -- add another, if then not T, add another
						     (if (char=? (string-ref str j) #\,)
							 (if (>= (+ j 1) len)
							     (lint-format "missing format directive: ~S" name str)
							     (if (char-ci=? (string-ref str (+ j 1)) #\n)
								 (begin
								   (set! dirs (+ dirs 1))
								   (set! j (+ j 2)))
								 (if (char-numeric? (string-ref str (+ j 1)))
								     (set! j (+ j 2))
								     (set! j (+ j 1))))))
						     (if (>= j len)
							 (lint-format "missing format directive: ~S" name str)
							 (if (not (char-ci=? (string-ref str j) #\t))
							     (set! dirs (+ dirs 1))))))))))
				     
				     (set! tilde-time #f)
				     (case c 
				       ((#\{) (set! curlys (+ curlys 1)))
				       ((#\}) (set! curlys (- curlys 1)))
				       ((#\^ #\|)
					(if (zero? curlys)
					    (lint-format "~A has ~C outside ~~{~~}?" name str c)))))
				   (begin
				     (set! pos (char-position #\~ str i))
				     (if pos 
					 (begin
					   (set! tilde-time #t)
					   (set! i pos))
					 (set! i len))))))
			   
			   (if tilde-time
			       (lint-format "~A control string ends in tilde: ~A" name head (truncated-list->string form)))))
		     
		     (if (not (= curlys 0))
			 (lint-format "~A has ~D unmatched ~A~A: ~A"
				      name head 
				      (abs curlys) 
				      (if (positive? curlys) "{" "}") 
				      (if (> curlys 1) "s" "") 
				      (truncated-list->string form)))
		     dirs))
		 
		 (if (not (string? control-string))
		     (if (not (proper-list? args))
			 (lint-format "~S looks suspicious" name form))
		     (let ((ndirs (count-directives control-string name form))
			   (nargs (if (or (null? args) (pair? args)) (length args) 0)))
		       (if (not (= ndirs nargs))
			   (lint-format "~A has ~A arguments: ~A" 
					name head 
					(if (> ndirs nargs) "too few" "too many")
					(truncated-list->string form))
			   (if (and (not (cadr form))
				    (zero? ndirs)
				    (not (char-position #\~ control-string)))
			       (lint-format "~A could be ~S, (format is a no-op here)" name form (caddr form)))))))))

	  ((sort!)
	   (if (= (length form) 3)
	       (let ((func (caddr form)))
		 (if (memq func '(= eq? eqv? equal? string=? char=? string-ci=? char-ci=?))
		     (lint-format "sort! with ~A may hang: ~A" name func (truncated-list->string form))
		     (if (symbol? func)
			 (let ((sig (procedure-signature (symbol->value func))))
			   (if (and sig
				    (not (eq? (car sig) 'boolean?)))
			       (lint-format "~A is a questionable sort! function" name func))))))))

	  ((substring) 
	   (if (every? code-constant? (cdr form))
	       (catch #t
		 (lambda ()
		   (let ((val (eval form)))
		     (lint-format "perhaps ~A -> ~S" name form val)))
		 (lambda (type info)
		   (lint-format "~A -> ~A~%" name form (apply format #f info))))
	       
	       (let ((str (cadr form)))
		 (if (and (pair? str)
			  (eq? (car str) 'substring)
			  (pair? (cddr form))
			  (null? (cdddr form))
			  (null? (cdddr str)))
		     (if (and (integer? (caddr form))
			      (integer? (caddr str)))
			 (lint-format "perhaps ~A" name 
				      (lists->string form `(substring ,(cadr str) ,(+ (caddr str) (caddr form)))))
			 (lint-format "perhaps ~A" name 
				      (lists->string form `(substring ,(cadr str) (+ ,(caddr str) ,(caddr form)))))))
		 ;; end indices are complicated -- since this rarely happens, not worth the trouble
		 (if (and (integer? (caddr form))
			  (zero? (caddr form))
			  (null? (cdddr form)))
		     (lint-format "perhaps clearer: ~A" name (lists->string form `(copy ,str)))))))

	  ((list-tail)
	   (if (= (length form) 3)
	       (if (and (integer? (caddr form))
			(zero? (caddr form)))
		   (lint-format "perhaps ~A" name (lists->string form (cadr form)))
		   (if (and (pair? (cadr form))
			    (eq? (caadr form) 'list-tail))
		       (if (and (integer? (caddr form))
				(integer? (caddr (cadr form))))
			   (lint-format "perhaps ~A" name 
					(lists->string form `(list-tail ,(cadadr form) ,(+ (caddr (cadr form)) (caddr form)))))
			   (lint-format "perhaps ~A" name 
					(lists->string form `(list-tail ,(cadadr form) (+ ,(caddr (cadr form)) ,(caddr form))))))))))

	  ((eq?) 
	   (if (< (length form) 3)
	       (lint-format "eq? needs 2 arguments: ~A" name (truncated-list->string form))
	       (let ((arg1 (cadr form))
		     (arg2 (caddr form)))
		 (let ((eq1 (eqf arg1))
		       (eq2 (eqf arg2)))
		   (if (or (eq? (car eq1) 'equal?)
			   (eq? (car eq2) 'equal?))
		       (lint-format "eq? should be equal? in ~S" name form)
		       (if (or (eq? (car eq1) 'eqv?)
			       (eq? (car eq2) 'eqv?))
			   (lint-format "eq? should be eqv? in ~S" name form))))
		 
		 (let ((expr 'unset))             ; (eq? e #f) or (eq? #f e) -> (not e)
		   (if (not arg1)
		       (set! expr (simplify-boolean `(not ,arg2) () () env))
		       (if (not arg2)
			   (set! expr (simplify-boolean `(not ,arg1) () () env))
			   (if (and (or (null? arg1)
					(quoted-null? arg1))
				    (not (code-constant? arg2)))
			       (set! expr `(null? ,arg2))
			       (if (and (or (null? arg2)
					    (quoted-null? arg2))
					(not (code-constant? arg1)))
				   (set! expr `(null? ,arg1))
				   (if (and (eq? arg1 #t)
					    (pair? arg2)
					    (eq? (return-type (car arg2)) 'boolean?))
				       (set! expr arg2)
				       (if (and (eq? arg2 #t)
						(pair? arg1)
						(eq? (return-type (car arg1)) 'boolean?))
					   (set! expr arg1)))))))
		   (if (not (eq? expr 'unset))
		       (lint-format "perhaps ~A" name (lists->string form expr)))))))
				  
	  ((eqv? equal? morally-equal?) 
	   (if (< (length form) 3)
	       (lint-format "~A needs 2 arguments: ~A" name head (truncated-list->string form))
	       (let ((arg1 (cadr form))
		     (arg2 (caddr form)))
		 (let ((eq1 (eqf arg1))
		       (eq2 (eqf arg2)))
		   (if (or (eq? (car eq1) 'equal?)
			   (eq? (car eq2) 'equal?))
		       (if (not (memq head '(equal? morally-equal?)))
			   (lint-format "~A should be equal? in ~S" name head form))
		       (if (or (eq? (car eq1) 'eqv?)
			       (eq? (car eq2) 'eqv?))
			   (if (and (not (eq? head 'eqv?))
				    (or (not (eq? head 'morally-equal?))
					(and (or (not (number? arg1))
						 (rational? arg1)) ; here we have float-equal-epsilon
					     (or (not (number? arg2))
						 (rational? arg2)))))
			       (lint-format "~A ~A be eqv? in ~S" name head (if (eq? head 'eq?) "should" "could") form))
			   (if (or (eq? (car eq1) 'eq?)
				   (eq? (car eq2) 'eq?))
			       (if (or (not arg1) (not arg2))
				   (lint-format "~A could be not: ~A" name head
						(lists->string form `(not ,(or arg1 arg2))))
				   (if (or (null? arg1) (null? arg2)
					   (quoted-null? arg1) (quoted-null? arg2))
				       (lint-format "~A could be null?: ~A" name head
						    (lists->string form 
								   (if (or (null? arg1) (quoted-null? arg1))
								       `(null? ,arg2)
								       `(null? ,arg1))))
				       (if (not (eq? head 'eq?))
					   (lint-format "~A could be eq? in ~S" name head form)))))))))))
				  
	  ((map for-each)
	   (let* ((len (length form))
		  (args (- len 2)))
	     (if (< len 3)
		 (lint-format "~A missing argument~A in: ~A"
			      name head 
			      (if (= len 2) "" "s") 
			      (truncated-list->string form))
		 (let ((func (cadr form))
		       (ary #f))
		   (if (and (symbol? func)
			    (defined? func)
			    (procedure? (symbol->value func *e*)))
		       (set! ary (arity (symbol->value func *e*)))
		       
		       (if (and (pair? func)
				(memq (car func) '(lambda lambda*))
				(pair? (cadr func)))
			   (let ((arglen (length (cadr func))))
			     (if (eq? (car func) 'lambda)
				 (if (negative? arglen)
				     (set! ary (cons (abs arglen) 512000))
				     (set! ary (cons arglen arglen)))
				 (if (or (negative? arglen)
					 (memq :rest (cadr func)))
				     (set! ary (cons 0 512000))
				     (set! ary (cons 0 arglen)))))))
		   
		   (if (pair? ary)
		       (if (< args (car ary))
			   (lint-format "~A has too few arguments in: ~A"
					name head 
					(truncated-list->string form))
			   (if (> args (cdr ary))
			       (lint-format "~A has too many arguments in: ~A"
					    name head 
					    (truncated-list->string form)))))
		   
		   (for-each 
		    (lambda (obj)
		      (if (and (pair? obj)
			       (memq (car obj) '(vector->list string->list let->list)))
			  (lint-format "~A could be simplified to: ~A ; (~A accepts non-list sequences)" 
				       name
				       (truncated-list->string obj) 
				       (truncated-list->string (cadr obj))
				       head)))
		    (cddr form))))))
	  
	  ((magnitude)
	   (if (and (= (length form) 2)
		    (memq (->type (cadr form)) '(integer? rational? real?)))
	       (lint-format "perhaps use abs here: ~A" name form)))

	  ((null eq eqv equal) ; (null (cdr...)) 
	   (if (not (var-member head env))
	       (lint-format "misspelled '~A? in ~A?" name head form)))

	  ((open-input-file open-output-file)
	   (if (and (pair? (cdr form))
		    (pair? (cddr form))
		    (string? (caddr form))
		    (not (memv (string-ref (caddr form) 0) '(#\r #\w #\a)))) ; b + then e m c x if gcc
	       (lint-format "unexpected mode: ~A" name form)))

	  ((catch)
	   ;; catch tag is tricky -- it is evaluated, then eq? matches at error time, so we need
	   ;;   to catch constants that can't be eq?
	   (if (= (length form) 4)
	       (let ((tag (cadr form)))
		 (if (or (and (not (pair? tag))
			      (or (number? tag) (char? tag) (length tag)))
			 (and (pair? tag)
			      (eq? (car tag) 'quote)
			      (or (not (pair? (cdr tag)))
				  (length (cadr tag)))))
		     (lint-format "catch tag ~S is unreliable (catch uses eq? to match tags)" name (cadr form))))))

	  ((load) ; pick up the top level declarations
	   (if (>= (length form) 2)
	       (scan form)))

	  ((*s7*)
	   (if (= (length form) 2)
	       (let ((arg (cadr form)))
		 (if (and (pair? arg)
			  (eq? (car arg) 'quote)
			  (symbol? (cadr arg))
			  (not (memq (cadr arg) 
				     '(print-length safety cpu-time heap-size free-heap-size gc-freed max-string-length max-list-length 
				       max-vector-length max-vector-dimensions default-hash-table-length initial-string-port-length 
				       gc-protected-objects file-names rootlet-size c-types stack-top stack-size stacktrace-defaults
				       max-stack-size catches exits float-format-precision bignum-precision default-rationalize-error 
				       default-random-state morally-equal-float-epsilon hash-table-float-epsilon undefined-identifier-warnings 
				       gc-stats symbol-table-locked?))))
		     (lint-format "unknown *s7* field: ~A" name (cadr form))))))

	  )) ; end check-special-cases

      
      (define (check-call name head form env)
	(let ((fdata (or (var-member head env) (hash-table-ref globals head))))
	  ;(format *stderr* "~A call: ~A~%" form fdata)
	  (if (var? fdata)
	      ;; a local var
	      (if (let? (var-new fdata))
		  (let ((type ((var-new fdata) 'type))
			(args ((var-new fdata) 'arglist))
			(ary (and (not (eq? ((var-new fdata) 'decl) 'error))
				  (arity ((var-new fdata) 'decl)))))
		    ;(format *stderr* "~A ~S~%" ary (object->string ((var-new fdata) 'decl) :readable))
		    (if (pair? ary)
			(let ((req (car ary))
			      (opt (cdr ary))
			      (pargs (if (pair? args) 
					 (proper-list args)
					 (if (symbol? args)
					     (list args)
					     ()))))
			  (let ((call-args (length (cdr form))))
			    (if (< call-args req)
				(lint-format "~A needs ~D argument~A: ~A" 
					     name head 
					     req (if (> req 1) "s" "") 
					     (truncated-list->string form))
				(if (> (- call-args (keywords (cdr form))) opt)
				    (lint-format "~A has too many arguments: ~A" name head (truncated-list->string form)))))
			  (if (and (memq type '(define* lambda*))
				   (pair? args)
				   (not (memq :allow-other-keys args)))
			      
			      (for-each
			       (lambda (arg)
				 (if (and (keyword? arg)
					  (not (member (keyword->symbol arg) pargs 
						       (lambda (a b)
							 (if (pair? b) 
							     (eq? a (car b))
							     (eq? a b))))))
				     (lint-format "~A keyword argument ~A (in ~S) does not match any argument in ~S" name head arg form pargs)))
			       (cdr form)))))))
	      ;; not local var
	      (when (symbol? head)
		(let ((head-value (symbol->value head *e*))) ; head might be "arity"!
		  (when (or (procedure? head-value)
			    (macro? head-value))
		    ;; check arg number
		    (let* ((args (length (cdr form)))
			   (ary (arity head-value))
			   (min-arity (car ary))
			   (max-arity (cdr ary)))
		      (if (< args min-arity)
			  (lint-format "~A needs ~A~D argument~A: ~A" 
				       name head 
				       (if (= min-arity max-arity) "" "at least ")
				       min-arity
				       (if (> min-arity 1) "s" "") 
				       (truncated-list->string form))
			  (if (and (not (procedure-setter head-value))
				   (> (- args (keywords (cdr form))) max-arity))
			      (lint-format "~A has too many arguments: ~A" name head (truncated-list->string form))))
		      (if (and (procedure? head-value)
			       (pair? (cdr form))) ; there are args (the not-enough-args case is checked above)
			  (if (zero? max-arity)
			      (lint-format "too many arguments: ~A" name (truncated-list->string form))    
			      (begin
				
				(for-each (lambda (arg)
					    (if (pair? arg)
						(if (negative? (length arg))
						    (lint-format "missing quote? ~A in ~A" name arg form)
						    (if (eq? (car arg) 'unquote)
							(lint-format "stray comma? ~A in ~A" name arg form)))))
					  (cdr form))
				
				;; if keywords, check that they are acceptable
				;;    this only applies to lambda*'s that have been previously loaded (lint doesn't create them)
				(let ((source (procedure-source head-value)))
				  (if (and (pair? source)
					   (eq? (car source) 'lambda*))
				      (let ((decls (cadr source)))
					(if (not (memq :allow-other-keys decls))
					    (for-each
					     (lambda (arg)
					       (if (and (keyword? arg)
							(not (eq? arg :rest))
							(not (member arg decls 
								     (lambda (a b) 
								       (if (pair? b) 
									   (eq? (keyword->symbol a) (car b))
									   (eq? (keyword->symbol a) b))))))
						   (lint-format "~A keyword argument ~A (in ~S) does not match any argument in ~S" name head arg form decls)))
					     (cdr form))))))
				
				;; we've already checked for head in the current env above
				(if (and (or (memq head '(eq? eqv?))
					     (and (= (length form) 3)
						  (hash-table-ref repeated-args-table head)))
					 (repeated-member? (cdr form) env))
				    (lint-format "this looks odd: ~A"
						 name
						 ;; sigh (= a a) could be used to check for non-finite numbers, I suppose,
						 ;;   and (/ 0 0) might be deliberate (as in gmp)
						 ;;   also (min (random x) (random x)) is not pointless
						 (truncated-list->string form))
				    (if (and (hash-table-ref repeated-args-table-2 head)
					     (repeated-member? (cdr form) env))
					(lint-format "it looks odd to have repeated arguments in~A" name (truncated-list->string form))))

				(when (memq head '(eq? eqv?))
				  (define (repeated-member-with-not? lst env)
				    (and (pair? lst)
					 (or (and (or (not (pair? (car lst)))
						      (not (side-effect? (car lst) env)))
						  (or (member (list 'not (car lst)) (cdr lst))
						      (and (pair? (car lst))
							   (eq? (caar lst) 'not)
							   (= (length (car lst)) 2)
							   (member (cadar lst) (cdr lst)))))
					     (repeated-member-with-not? (cdr lst) env))))
				  (if (repeated-member-with-not? (cdr form) env)
				      (lint-format "this looks odd: ~A" name (truncated-list->string form))))
      
      				;; now try to check arg types 
				(let ((func (symbol->value head *e*)))
				  (let ((arg-data (let ((sig (procedure-signature func)))
						    (and (pair? sig)
							 (cdr sig)))))
				    ;; (format *stderr* "arg-data: ~A~%" arg-data)
				    (if (and arg-data
					     (or (not (pair? arg-data))
						 (not (eq? (car arg-data) #t))
						 (not (infinite? (length arg-data)))))
					(check-args name head form arg-data env max-arity))))))))))))))
  
      (define (get-generator form name head) ; defgenerator funcs
	(let ((name (if (pair? (cadr form))
			(caadr form)
			(cadr form))))
	  ;; auto-define make-name, name?
	  (let ((make-name (string->symbol (string-append "make-" (symbol->string name))))
		(name? (string->symbol (string-append (symbol->string name) "?"))))
	    
	    (hash-table-set! globals make-name (make-var make-name))
	    (hash-table-set! globals name? (make-var name?)))))
      
      
      (define (load-walk form)
	;; check form for top-level declarations, if load seen, and we haven't seen that file, load it
	(let ((head (car form)))
	  (case head
	    ((begin)
	     (load-walk (cdr form)))
	    
	    ((define-constant define-envelope)
	     (hash-table-set! globals (cadr form) (make-var (cadr form) :val (and (pair? (cddr form)) (caddr form)))))
	    
	    ((defmacro defmacro*)
	     (hash-table-set! globals (cadr form) (make-var (cadr form) 
							    :new (inlet :type head
									:decl (eval (list head '_ (caddr form) #f))
									:signature #f
									:side-effect #t
									:arglist (caddr form)
									:definition form
									:location #__line__))))
	    ((define)
	     (let ((name (cadr form)))
	       (if (pair? name)
		   (let ((fname (car name)))
		     (if (symbol? fname)
			 (if (keyword? fname)
			     (lint-format "keywords are constants ~A" name form)
			     (hash-table-set! globals fname 
					      (make-var fname 
							:new (inlet :type 'define
								    :decl (eval (list 'define (cons '_ (cdadr form)) #f))
								    :signature #f
								    :side-effect #t
								    :arglist (cdr name)
								    :definition form
								    :location #__line__))))

			 (lint-format "what is this? ~A" name form)))
		   (hash-table-set! globals name (make-var name :val (and (pair? (cddr form)) (caddr form)))))))

	    ((define* define-expansion define-macro define-macro* define-bacro define-bacro* definstrument defanimal)
	     (hash-table-set! globals (caadr form) (make-var (caadr form) 
							     :new (inlet :type head
									 :decl (eval (list head (cons '_ (cdadr form)) #f))
									 :signature #f
									 :side-effect #t
									 :arglist (cdadr form)
									 :definition form
									 :location #__line__))))

	    ((defgenerator)
	     (get-generator form 'defgenerator head))
	    
	    ((if)
	     (if (pair? (cddr form))
		 (if (pair? (cdddr form))
		     (begin
		       (load-walk (cadddr form))
		       (load-walk (caddr form)))
		     (load-walk (caddr form)))))
	    
	    ((load)
	     (if (>= (length form) 2)
		 (scan form))))))

      
      (define (scan form)

	(define (find-file file paths)
	  (and (pair? paths)
	       (catch #t
		 (lambda ()
		   (open-input-file (string-append (car paths) "/" file)))
		 (lambda args
		   (find-file file (cdr paths))))))

	(let ((file (cadr form)))
	  (if (and (string? file)
		   (not (member file loaded-files)))
	      (let ((fp (catch #t
			  (lambda ()
			    (open-input-file file))
			  (lambda args
			    (or (find-file file *load-path*)
				(and (format outport "  can't load ~S~%" file) #f))))))
		(if (input-port? fp)
		    (begin
		      (set! loaded-files (cons file loaded-files))
					;(format outport "  (scanning ~S)~%" file)
		      (do ((form (read fp) (read fp)))
			  ((eof-object? form))
			(if (and (pair? form)
				 (pair? (cdr form)))
			    (load-walk form)))
		      (close-input-port fp)))))))
      
      
      (define (binding-ok? name head binding env second-pass)
	;; check let-style variable binding for various syntactic problems
	(if second-pass
	    (and (pair? binding)
		 (symbol? (car binding))
		 ;(not (keyword? (car binding)))
		 (not (constant? (car binding)))
		 (pair? (cdr binding))
		 (or (null? (cddr binding))
		     (and (eq? head 'do)
			  (pair? (cddr binding)) ; (do ((i 0 . 1))...)
			  (null? (cdddr binding)))))

	    (cond ((not (pair? binding)) 	   (lint-format "~A binding is not a list? ~S" name head binding) #f)
		  ((not (symbol? (car binding)))   (lint-format "~A variable is not a symbol? ~S" name head binding) #f)
		  ((keyword? (car binding))	   (lint-format "~A variable is a keyword? ~S" name head binding) #f)
		  ((constant? (car binding))	   (lint-format "can't bind a constant: ~S" name binding) #f)
		  ((not (pair? (cdr binding)))
		   (if (null? (cdr binding))
		       (lint-format "~A variable value is missing? ~S" name head binding)
		       (lint-format "~A binding is an improper list? ~S" name head binding))
		   #f)
		  ((or (not (pair? (cdr binding)))
		       (and (pair? (cddr binding))
			    (or (not (eq? head 'do))
				(pair? (cdddr binding)))))
		   (lint-format "~A binding is messed up: ~A" name head binding)
		   #f)
		  (else 
		   (if (and *report-shadowed-variables*
			    (or (hash-table-ref globals (car binding))
				(var-member (car binding) env)))
		       (lint-format "~A variable ~A in ~S shadows an earlier declaration" name head (car binding) binding))
		   #t))))
      
      
      (define (env-difference name e1 e2 lst)
	(if (or (null? e1)
		(null? e2)
		(eq? (car e1) (car e2)))
	    lst
	    (env-difference name (cdr e1) e2 
			    (if (eq? name (var-name (car e1)))
				lst
				(cons (car e1) lst)))))
      
      
      (define (report-usage name type head vars)
	;; report unused or set-but-unreferenced variables
	(if (and (not (eq? head 'begin)) ; begin can redefine = set a variable
		 (pair? vars)
		 (proper-list? vars))
	    (do ((cur vars (cdr cur))
		 (rst (cdr vars) (cdr rst)))
		((null? rst))
	      (let ((repeat (var-member (var-name (car cur)) rst)))
		;; not globals here because the same name might be used as a global
		(if repeat
		    (lint-format "~A ~A ~A is declared twice" name head type (var-name (car cur)))))))
	
	(let ((set ())
	      (unused ()))
	  (for-each 
	   (lambda (arg)
	     (if (hash-table-ref syntaces (var-name arg))
		 (lint-format "~A ~A named ~A is asking for trouble" name head type (var-name arg))
		 (if (not (symbol? (var-name arg)))
		     (lint-format "bad ~A ~A name: ~S" name head type (var-name arg))))
	     (if (and (not (var-ref arg))
		      (not (hash-table-ref other-identifiers (var-name arg))))
		 (if (var-set arg)
		     (set! set (cons (var-name arg) set))
		     (if (not (memq (var-name arg) '(documentation signature iterator?)))
			 (set! unused (cons (var-name arg) unused))))))
	   vars)
	  
	  (if (pair? set)
	      (lint-format "~A ~A~A ~{~A~^, ~} set, but not used" 
			   name head type (if (> (length set) 1) "s" "") (reverse set)))
	  (if (pair? unused)
	      (lint-format "~A ~A~A ~{~A~^, ~} not used" 
			   name head type (if (> (length unused) 1) "s" "") (reverse unused)))))
      
      
      (define (lint-walk-body name head body env)
	;; walk a body (a list of forms, the value of the last of which might be returned)

	(if (not (proper-list? body))
	    (lint-format "stray dot? ~A" name (truncated-list->string body))
	    
	    (let ((prev-f #f)
		  (prev-fs #f)
		  (prev-len 0)
		  (f-len 0)
		  (block-fs #f)
		  (dpy-f #f)
		  (dpy-start #f)
		  (len (length body)))
	      (if (eq? head 'do) (set! len (+ len 1))) ; last form in do body is not returned

	      (do ((fs body (cdr fs))
		   (ctr 0 (+ ctr 1)))
		  ((not (pair? fs)))
		(let ((f (car fs)))

		  (if (pair? f)
		      (begin
			(set! f-len (length f))
			(if (eq? (car f) 'begin)
			    (lint-format "redundant begin: ~A" name (truncated-list->string f))))
		      (set! f-len 0))

		  (if (and (= f-len prev-len 3)
			   (eq? (car f) 'set!)
			   (eq? (car prev-f) 'set!)
			   (eq? (cadr f) (cadr prev-f)))
		      (let ((arg1 (caddr prev-f))
			    (arg2 (caddr f)))
			(if (or (not (pair? arg2))
				(not (tree-member (cadr f) arg2)))
			    (if (and (not (side-effect? arg1 env))
				     (not (side-effect? arg2 env)))
				(lint-format "this could be omitted: ~A" name prev-f))
			    (if (and (pair? arg1)
				     (pair? arg2)
				     (eq? (car arg1) 'cons)
				     (eq? (car arg2) 'cons)
				     (eq? (cadr f) (caddr arg2))
				     (not (eq? (cadr f) (cadr arg2))))
				(lint-format "perhaps ~A ~A -> ~A" name
					     prev-f f
					     `(set! ,(cadr f) (cons ,(cadr arg2) (cons ,@(cdr arg1)))))))))

		  (let ((repeated-if (and (= f-len prev-len 3)
					  (eq? (car f) 'if)
					  (eq? (car prev-f) 'if)
					  (equal? (cadr f) (cadr prev-f))))
			(combine #f))
		    (if (not repeated-if)
			(if block-fs
			    (if (not (eq? (cdr block-fs) prev-fs))
				(set! combine prev-f)
				(set! block-fs #f)))
			(if block-fs
			    (set! combine (and (null? (cdr fs)) f))
			    (set! block-fs prev-fs)))
		    
		    (when combine
		      (if (not (side-effect? (caadr block-fs) env))
			  (lint-format "perhaps combine repeated if's: ~A ... ~A -> (when ~A ~A ... ~A)" name
				       (car block-fs) combine
				       (cadr combine) (caddar block-fs) (caddr combine)))
		      (set! block-fs #f)))

		  (if (< ctr (- len 1)) 
		      ;; f is not the last form, so its value is ignored
		      (begin
			(if (and (pair? f)
				 (eq? (car f) 'map))
			    (lint-format "map could be for-each: ~A" name (truncated-list->string f)))
			(if (not (side-effect? f env))
			    (lint-format "this could be omitted: ~A" name (truncated-list->string f))))
		      
		      ;; here f is the last form in the body
		      (when (and (pair? prev-f)
				 (pair? (cdr prev-f))
				 (pair? (cddr prev-f)))                ; (set! ((L 1) 2)) an error, but lint should keep going
			(if (and (eq? (car prev-f) 'set!)
				 (or (and (equal? (caddr prev-f) f)    ; (begin ... (set! x (...)) (...))
					  (not (side-effect? f env)))
				     (and (symbol? f)                  ; (begin ... (set! x ...) x)
					  (eq? f (cadr prev-f)))))
			    (lint-format "this could be omitted: ~A" name (truncated-list->string f)))
			(if (and (pair? f)
				 (pair? (cdr f))
				 (pair? (cddr f))
				 (eq? (cadr prev-f) (cadr f))
				 (or (and (eq? (car prev-f) 'vector-set!)
					  (eq? (car f) 'vector-ref))
				     (and (eq? (car prev-f) 'list-set!)
					  (eq? (car f) 'list-ref)))
				 (equal? (caddr f) (caddr prev-f))
				 (pair? (cdddr prev-f))
				 (not (pair? (cddddr prev-f)))
				 (not (pair? (cdddr f)))
				 (not (side-effect? (caddr f) env)))
			    (lint-format "this could be omitted: ~A" name (truncated-list->string f)))))
		  
		  (let ((dpy-case (and (pair? f)
				       (memq (car f) '(display write newline write-char write-string))))) ; flush-output-port?
		    (define (out-port expr) ; ()=not specified (*stdout*), #f=something is wrong (not enough args)
		      (if (eq? (car expr) 'newline)
			  (if (pair? (cdr expr))
			      (cadr expr)
			      ())
			  (and (pair? (cdr expr))
			       (if (pair? (cddr expr))
				   (caddr expr)
				   ()))))
		    (when (and dpy-case
			       (not dpy-start))
		      (set! dpy-f fs)
		      (set! dpy-start ctr))
		    ;(format *stderr* "~A ~A ~A ~A~%" f ctr dpy-start len)
		    (when (and dpy-start
			       (> (- ctr dpy-start) (if dpy-case 1 2))
			       (or (= ctr (- len 1))
				   (not dpy-case)))
		      ;; display sequence starts at dpy-start, goes to ctr (prev-f) unless not dpy-case
		      (let ((ctrl-string "")
			    (args ())
			    (dctr 0)
			    (dpy-last (if (not dpy-case) prev-f f))
			    (op (out-port (car dpy-f)))
			    (exprs (make-list (if dpy-case (- ctr dpy-start -1) (- ctr dpy-start)) ())))
			;(format *stderr* "~A: ~A ~A ~A ~A~%" body dpy-case dpy-start ctr dpy-last)
			(call-with-exit
			 (lambda (done)
			   (for-each
			    (lambda (d)
			      (if (not (equal? (out-port d) op)) 
				  (begin 
				    (lint-format "unexpected port change: ~A -> ~A in ~A~%" name op (out-port d) d) ; ??
				    (done)))
			      (list-set! exprs dctr d)
			      (set! dctr (+ dctr 1))
			      (case (car d)
				((display) 
				 (if (string? (cadr d))
				     (set! ctrl-string (string-append ctrl-string (cadr d)))
				     (begin
				       (set! ctrl-string (string-append ctrl-string "~A"))
				       (set! args (cons (cadr d) args)))))
				((write)
				 (if (string? (cadr d))
				     (set! ctrl-string (string-append ctrl-string "\"" (cadr d) "\""))
				     (begin
				       (set! ctrl-string (string-append ctrl-string "~S"))
				       (set! args (cons (cadr d) args)))))
				((write-char)
				 (if (char? (cadr d))
				     (set! ctrl-string (string-append ctrl-string (string (cadr d))))
				     (begin
				       (set! ctrl-string (string-append ctrl-string "~C"))
				       (set! args (cons (cadr d) args)))))
				((write-string)  ; same as display but with possible start|end indices
				 (let ((indices (and (pair? (cddr d)) ; port
						     (pair? (cdddr d))
						     (cdddr d))))
				   (if (string? (cadr d))
				       (if indices
					   (if (and (integer? (car indices))
						    (or (null? (cdr indices))
							(and (pair? indices)
							     (integer? (cadr indices)))))
					       (set! ctrl-string (string-append ctrl-string (apply substring (cadr d) indices)))
					       (begin
						 (set! ctrl-string (string-append ctrl-string "~A"))
						 (set! args (cons `(substring ,(cadr d) ,@indices) args))))
					   (set! ctrl-string (string-append ctrl-string (cadr d))))
				       (begin
					 (set! ctrl-string (string-append ctrl-string "~A"))
					 (if indices
					     (set! args (cons `(substring ,(cadr d) ,@indices) args))
					     (set! args (cons (cadr d) args)))))))
				((newline)
				 (set! ctrl-string (string-append ctrl-string "~%"))))
				
			      (when (eq? d dpy-last) ; op can be null => send to (current-output-port), return #f or #<unspecified>
				(lint-format "perhaps ~A" name (lists->string exprs `(format ,op ,ctrl-string ,@(reverse args))))
				(done)))
			    dpy-f))))
		      (set! dpy-start #f))
		    (unless dpy-case (set! dpy-start #f)))
		  
		  (if (and (pair? f)
			   (memq head '(defmacro defmacro* define-macro define-macro* define-bacro define-bacro*))
			   (tree-member 'unquote f))
		      (lint-format "~A probably has too many unquotes: ~A" name head (truncated-list->string f)))
		  
		  (set! prev-f f)
		  (set! prev-fs fs)
		  (set! prev-len f-len)
		  (set! env (lint-walk name f env))))))
	env)
      
      
      (define (lint-walk-function-body name head args arg-data body env)
	;; walk function body, with possible doc string at the start
	(when (and (pair? body)
		   (pair? (cdr body))
		   (string? (car body)))
	  (if *report-doc-strings*
	      (lint-format "old-style doc string: ~S~%" name (car body)))
	  (set! body (cdr body))) ; ignore old-style doc-string
	(lint-walk-body name head body env)
	env)
      
      
      (define (lint-walk-function head name args val form env)
	;(format *stderr* "function: ~A ~A ~A ~A~%" head name args val)

	;; check out function arguments (adding them to the current env), then walk its body, (name == function name, val == body)
	;; first check for (define (hi...) (ho...)) where ho has no opt args (and try to ignore possible string constant doc string)

	(if (eq? head 'define)
	    (let ((bval (if (and (pair? val)
				 (string? (car val)))
			    (cdr val)         ; strip away the (old-style) documentation string
			    val)))
	      (if (and (pair? bval)           ; not (define (hi a) . 1)!
		       (pair? (car bval))
		       (null? (cdr bval))
		       (symbol? (caar bval))) ; not (define (hi) ((if #f + abs) 0))
		  (if (equal? args (cdar bval))
		      (let* ((cval (caar bval))
			     (p (symbol->value cval *e*))
			     (ary (arity p)))
			(if (or (and (procedure? p)
				     (or (= (car ary) (cdr ary))
					 (= (length args) (cdr ary))))
				(let ((e (or (var-member cval env) 
					     (hash-table-ref globals cval))))
				  (and e
				       (var? e)
				       (let? (var-new e))
				       (let ((def ((var-new e) 'definition)) 
					     (e-args ((var-new e) 'arglist)))
					 (and 
					  (pair? def)
					  (eq? ((var-new e) 'type) 'define)
					  (or (and (null? args)
						   (null? e-args))
					      (and (symbol? args)
						   (symbol? e-args))
					      (and (pair? args)
						   (pair? e-args)
						   (= (length args) (length e-args)))))))))
			    (lint-format "~A could be (define ~A ~A)" name name name cval)))
		      (if (and (eq? (caar bval) 'list-ref)
			       (pair? (cdar bval))
			       (pair? (cddar bval))
			       (eq? (car args) (cadar bval))
			       (null? (cdr args)))
			  (case (caddar bval)
			    ((0) (lint-format "~A could be (define ~A car)" name name name))
			    ((1) (lint-format "~A could be (define ~A cadr)" name name name))
			    ((2) (lint-format "~A could be (define ~A caddr)" name name name))
			    ((3) (lint-format "~A could be (define ~A cadddr)" name name name))))))))
	    
	(let ((ldata (and (symbol? name)
			  (make-var (if (not (memq head '(lambda lambda*))) name '[anonymous])
				    :new (inlet :type head
						:decl (catch #t
							(lambda ()
							  (case head
							    ((lambda)
							     (eval (list head (cadr form) #f)))
							    ((lambda*)
							     (eval (list head (copy (cadr form)) #f))) ; eval can remove :allow-other-keys!
							    ((define*)
							     (eval (list head (cons '_ (copy (cdadr form))) #f)))
							    ((defmacro defmacro*)
							     (eval (list head '_ (caddr form) #f)))
							    ((define-constant)
							     (eval (list 'define (cons '_ (cdadr form)) #f)))
							    (else
							     (eval (list head (cons '_ (cdadr form)) #f)))))
							(lambda args
							  'error))
						:signature #f
						:side-effect #t
						:arglist (if (memq head '(defmacro defmacro*)) 
							     (caddr form)
							     (if (memq head '(lambda lambda*))
								 (cadr form)
								 (cdadr form)))
						:definition form
						:location #__line__)))))
				    
	  (if (null? args)
	      (begin
		(if (memq head '(define* lambda* defmacro* define-macro* define-bacro*))
		    (lint-format "~A could be ~A" 
				 name head
				 (symbol (substring (symbol->string head) 0 (- (length (symbol->string head)) 1)))))
		(lint-walk-function-body name head args () val env)
		(if ldata
		    (append (list ldata) env)
		    env))
	    
	      (if (or (symbol? args) 
		      (pair? args))
		  (let ((arg-data (if (symbol? args)                            ; this is getting arg names to add to the environment
				      (list (make-var args))
				      (map
				       (lambda (arg)
					 (if (symbol? arg)
					     (if (memq arg '(:rest :allow-other-keys))
						 (values)                  ; map omits this entry 
						 (make-var arg))
					     (if (or (not (pair? arg))
						     (not (= (length arg) 2))
						     (not (memq head '(define* lambda* defmacro* define-macro* define-bacro* definstrument))))
						 (begin
						   (lint-format "strange parameter for ~A: ~S" name head arg)
						   (values))
						 (begin
						   (if (not (cadr arg))
						       (lint-format "the default argument value is #f in ~A ~A" name head arg))
						   (make-var (car arg))))))
				       (proper-list args)))))
		  
		    (lint-walk-function-body name head args arg-data val (append arg-data (if ldata (append (list ldata) env) env)))
		    (if *report-unused-parameters* 
			(report-usage name 'parameter head arg-data))
		    (if ldata 
			(append (list ldata) env)
			env))
		
		  (begin
		    (lint-format "strange ~A parameter list ~A" name head args)
		    env)))))
      
      
      (define (lint-walk name form env)
	;; walk a form 
	;(format *stderr* "walk ~A, env: ~A~%~%" form env)

	(if (symbol? form)
	    (set-ref? form env) ; returns env
	    
	    (if (pair? form)
		(let ((head (car form)))
		  
		  (define (defmacro-case)
		    ;; ---------------- defmacro ----------------
		    (if (or (< (length form) 4)
			    (not (symbol? (cadr form))))
			(lint-format "~A declaration is messed up: ~A" name head (truncated-list->string form))
			(let ((sym (cadr form))
			      (args (caddr form))
			      (body (cdddr form)))
			  (if (and (pair? args)
				   (repeated-member? args env))
			      (lint-format "~A parameter is repeated: ~A" name head (truncated-list->string args)))
			  (lint-walk-function head sym args body form env))))
		  
		  (define (define-case)
		    ;; ---------------- define ----------------		  
		    (if (< (length form) 2)
			(begin
			  (lint-format "~S makes no sense" name form)
			  env)
			(let ((sym (cadr form))
			      (val (cddr form)))
			  
			  (if (symbol? sym)
			      (begin
					;(set! env (cons (list (make-var sym :typ (->type val))) env))
				
				(if (keyword? sym)
				    (lint-format "keywords are constants ~A" name sym))
				
				(if (memq head '(define define-constant define-envelope))
				    (let ((len (length form)))
				      (if (not (= len 3))
					  (lint-format "~S has ~A value~A?"
						       name form 
						       (if (< len 3) "no" "too many") 
						       (if (< len 3) "" "s"))))
				    (lint-format "~A is messed up" name (truncated-list->string form)))
				
				(if (and (pair? val)
					 (null? (cdr val))
					 (equal? sym (car val)))
				    (lint-format "this ~A is either not needed, or is an error: ~A" name head (truncated-list->string form)))
				
				(if (pair? (cddr form))
				    (let ((e (lint-walk sym (caddr form) env)))
				      (if (and (pair? e)
					       (eq? (var-name (car e)) '[anonymous])) ; (define x (lambda ...)) but it misses closures
					  (set! (var-name (car e)) sym)
					  (append (list (make-var sym)) env)))
				    (append (list (make-var sym)) env)))
			      
			      ;; not (symbol? sym)
			      (if (and (pair? sym)
				       (not (pair? (car sym))))
				  (begin
				    (when (pair? (cdr sym))
				      (if (repeated-member? (proper-list (cdr sym)) env)
					  (lint-format "~A parameter is repeated: ~A" name head (truncated-list->string sym)))
				      (if (memq head '(define* define-macro* define-bacro*))
					  (check-star-parameters name (cdr sym))
					  (if (list-any? keyword? (cdr sym))
					      (lint-format "~A arglist can't handle keywords" name head))))
				    
				    (if (and (eq? head 'definstrument)
					     (string? (car val)))
					(set! val (cdr val)))
				    
				    (if (keyword? (car sym))
					(begin
					  (lint-format "keywords are constants ~A" name (car sym))
					  env)
					(lint-walk-function head (car sym) (cdr sym) val form env)))
				  
				  (begin
				    (lint-format "strange form: ~S" head form)
				    env))))))
		  
		  (define (generator-case)
		    ;; ---------------- defgenerator ----------------
		    (get-generator form name head)
		    env)
		  
		  (define (lambda-case)
		    ;; ---------------- lambda ----------------		  
		    ;; the lambda case includes stuff like call/cc?
		    (let ((len (length form)))
		      (if (< len 3)
			  (begin
			    (lint-format "~A is messed up in ~A" name head (truncated-list->string form))
			    env)
			  (let ((args (cadr form)))
			    
			    (if (list? args)
				(let ((arglen (length args)))
				  (if (null? args)
				      (if (eq? head 'lambda*)             ; (lambda* ()...) -> (lambda () ...)
					  (lint-format "lambda* could be lambda: ~A" name form))
				      (begin ; args is a pair             ; (lambda (a a) ...)
					(if (repeated-member? (proper-list args) env)
					    (lint-format "~A parameter is repeated: ~A" name head (truncated-list->string args)))
					(if (eq? head 'lambda*)           ; (lambda* (a :b) ...)
					    (check-star-parameters name args)
					    (if (list-any? keyword? args) ; (lambda (:key) ...)
						(lint-format "lambda arglist can't handle keywords (use lambda*)" name)))))
				  
				  (if (and (eq? head 'lambda)             ; (lambda () (f)) -> f, (lambda (a b) (f a b)) -> f
					   (= len 3)
					   (>= arglen 0)) ; not a dotted list
				      (let ((body (caddr form)))
					(when (and (pair? body)
						   (symbol? (car body)))
					  (if (equal? args (cdr body))
					      (lint-format "perhaps ~A" name (lists->string form (car body)))
					      (if (equal? (reverse args) (cdr body))
						  (let ((rf (reversed (car body))))
						    (if rf (lint-format "perhaps ~A" name (lists->string form rf))))))))))
				
				(if (and (symbol? args)                   ; (lambda args (apply f args)) -> f
					 (eq? head 'lambda)
					 (= len 3))
				    (let ((body (caddr form)))
				      (if (and (pair? body)
					       (= (length body) 3)
					       (eq? (car body) 'apply)
					       (symbol? (cadr body))
					       (eq? args (caddr body)))
					  (lint-format "perhaps ~A" name (lists->string form (cadr body)))))))
			    
			    (lint-walk-function head name args (cddr form) form env)
			    env))))
		  
		  (define (set-case)
		    ;; ---------------- set! ----------------		  
		    (if (not (= (length form) 3))
			(begin
			  (lint-format "set! has too ~A arguments: ~S" name (if (> (length form) 3) "many" "few") form)
			  env)
			(let ((settee (cadr form))
			      (setval (caddr form)))
			  (let ((result (lint-walk name setval env)))
					;(format *stderr* "result: ~A, env: ~A~%" result env)
			    (if (symbol? settee)
				(if (constant? settee)
				    (lint-format "can't set! ~A (it is a constant)" name (truncated-list->string form)))
				(if (pair? settee)
				    (begin
				      (if (memq (car settee) '(vector-ref list-ref string-ref hash-table-ref))
					  (lint-format "~A as target of set!~A" name (car settee) (truncated-list->string form)))
				      (lint-walk name settee env) ; this counts as a reference since it's by reference so to speak
				      
				      ;; try type check (dilambda signatures)
				      (when (symbol? (car settee))
					(let ((f (symbol->value (car settee) *e*)))
					  (when (dilambda? f)
					    (let ((sig (procedure-signature (procedure-setter f)))
						  (settee-len (length settee)))
					      (when (and (pair? sig)
							 (positive? settee-len)
							 (pair? (list-tail sig settee-len)))
						(let ((checker (list-ref sig settee-len))
						      (arg-type (->type setval)))
						  (when (and (not (eq? 'symbol? arg-type))
							     (symbol? checker)
							     (not (compatible? checker arg-type)))
						    (lint-format "~A: new value should be a~A ~A: ~S: ~A" 
								 name (car settee)
								 (if (char=? (string-ref (format #f "~A" checker) 0) #\i) "n" "")
								 checker arg-type
								 (truncated-list->string form)))))))))
				      
				      (set! settee (do ((sym (car settee) (car sym)))
						       ((not (pair? sym)) sym))))
				    (lint-format "can't set! ~A" name (truncated-list->string form))))
			    
			    (when (symbol? settee) ; see do above
			      (set-set? settee setval env))
			    (if (equal? (cadr form) (caddr form)) ; not settee and setval here!
				(lint-format "pointless set!~A" name (truncated-list->string form)))
			    
			    result))))
		  
		  (define (quote-case)
		    ;; ---------------- quote ----------------		  
		    (let ((len (length form)))
		      (if (negative? len)
			  (lint-format "stray dot in quote's arguments? ~S" name form)
			  (if (not (= len 2))
			      (lint-format "quote has too ~A arguments: ~S" 
					   name 
					   (if (> (length form) 2) "many" "few") 
					   form)
			      (if (and (< quote-warnings 20)
				       (or (number? (cadr form))
					   (boolean? (cadr form))
					   (string? (cadr form))
					   (vector? (cadr form))
					   (null? (cadr form))
					   (memq (cadr form) '(#<unspecified> #<undefined> #<eof>))))
				  (begin
				    (set! quote-warnings (+ quote-warnings 1))
				    (lint-format "quote is not needed here: ~A~A" 
						 name (truncated-list->string form)
						 (if (= quote-warnings 20) "; will ignore this error henceforth." "")))))))
		    env)
		  
		  (define (cond-case)
		    ;; ---------------- cond ----------------
		    (let ((ctr 0)
			  (len (- (length form) 1)))
		      (if (negative? len)
			  (lint-format "cond is messed up: ~A" name (truncated-list->string form))
			  (let ((exprs ())
				(result :unset)
				(has-else #f)
				(has-combinations #f)
				(falses ())
				(prev-clause #f))
			    (for-each
			     (lambda (clause)
			       (set! ctr (+ ctr 1))
			       
			       (if (and prev-clause
					(not has-combinations)
					(> len 2) 
					(pair? clause)
					(equal? (cdr clause) (cdr prev-clause)))
				   (if (memq (car clause) '(else #t))        ; (cond ... (x z) (else z)) -> (cond ... (else z))
				       (if (not (side-effect? (car prev-clause) env))
					   (lint-format "this clause could be omitted: ~A" name prev-clause))
				       (set! has-combinations #t)))          ; handle these later
			       (set! prev-clause clause)
			       
			       (if (not (pair? clause))
				   (begin
				     (lint-format "cond clause is messed up: ~A" name (truncated-list->string clause))
				     (set! has-combinations #f))
				   
				   (let ((expr (simplify-boolean (car clause) () falses env))
					 (test (car clause))
					 (sequel (cdr clause)))
				     
				     (when (memq test '(else #t))
				       (set! has-else #t)
				       (if (and (pair? sequel)
						(pair? (car sequel))
						(null? (cdr sequel))
						(eq? (caar sequel) 'cond))
					   (lint-format "else clause cond could be folded into the outer cond: ~A" name (truncated-list->string clause))))
				     (if (never-false expr)
					 (if (not (= ctr len))
					     (lint-format "cond test is never false: ~A" name form)
					     (if (and (not (memq expr '(#t else)))
						      (not (side-effect? test env)))
						 (lint-format "cond last test could be #t: ~A" name form)))
					 (if (never-true expr)
					     (lint-format "cond test is never true: ~A" name form)))
				     (if (not (side-effect? test env))
					 (begin
					   (if (and (not (memq test '(else #t)))
						    (pair? sequel)
						    (null? (cdr sequel)))
					       (if (equal? test (car sequel))
						   (lint-format "no need to repeat the test: ~A" name (lists->string clause (list test)))
						   (if (and (pair? (car sequel))
							    (pair? (cdar sequel))
							    (null? (cddar sequel))
							    (equal? test (cadar sequel)))
						       (lint-format "perhaps use => here: ~A" name 
								    (lists->string clause (list test '=> (caar sequel)))))))
					   (if (member test exprs)
					       (lint-format "cond test repeated: ~A" name (truncated-list->string clause))
					       (set! exprs (cons test exprs)))))
				     (if (boolean? expr)
					 (if (not expr)
					     (lint-format "cond test is always false: ~A" name (truncated-list->string clause))
					     (if (not (= ctr len))
						 (lint-format "cond #t clause is not the last: ~A" name (truncated-list->string form))))
					 (if (eq? test 'else)
					     (if (not (= ctr len))
						 (lint-format "cond else clause is not the last: ~A" name (truncated-list->string form)))
					     (lint-walk name test env)))
				     (if (eq? result :unset)
					 (set! result sequel)
					 (if (not (equal? result sequel))
					     (set! result :unequal)))
				     (if (pair? sequel)
					 (if (eq? (car sequel) '=>)
					     (if (or (not (pair? (cdr sequel)))
						     (pair? (cddr sequel)))
						 (lint-format "cond => target is messed up: ~A" name (truncated-list->string clause))
						 (let ((f (cadr sequel)))
						   (if (symbol? f)
						       (let ((val (symbol->value f *e*)))
							 (if (procedure? val)
							     (if (not (aritable? val 1)) ; here values might be in test expr
								 (lint-format "=> target (~A) may be unhappy: ~A" name f clause))))
						       (if (and (pair? f)
								(eq? (car f) 'lambda)
								(pair? (cdr f))
								(pair? (cadr f))
								(not (= (length (cadr f)) 1)))
							   (lint-format "=> target (~A) may be unhappy: ~A" name f clause)))
						   (lint-walk name f env)))
					     (lint-walk-body name head sequel env))
					 (if (not (null? sequel))  ; (not (null?...)) here is correct -- we're looking for stray dots (lint is confused)
					     (lint-format "cond clause is messed up: ~A" name (truncated-list->string clause))))
				     (if (not (side-effect? expr env))
					 (set! falses (cons expr falses))
					 (set! result :unequal)))))
			     (cdr form))
			    (if (and has-else (pair? result)) ; all result clauses are the same (and not implicit)
				(if (null? (cdr result))
				    (lint-format "perhaps ~A" name (lists->string form (car result)))
				    (lint-format "perhaps ~A" name (lists->string form `(begin ,@result)))))
			    
			    (if (= len 2)
				(let ((c1 (cadr form))
				      (c2 (caddr form)))
				  (if (and (pair? c1) (= (length c1) 2)
					   (pair? c2) (= (length c2) 2)
					   (boolean? (cadr c1))
					   (boolean? (cadr c2))
					   (memq (car c2) '(#t else)))
				      (if (equal? (cadr c1) (cadr c2))
					  (if (not (side-effect? (car c1) env))
					      (lint-format "perhaps ~A" name (lists->string form (cadr c1))))
					  (if (eq? (cadr c1) #t)
					      (lint-format "perhaps ~A" name (lists->string form (car c1)))
					      (lint-format "perhaps ~A" name (lists->string form `(not ,(car c1)))))))))
			    
			    (when has-combinations
			      (let ((new-clauses ())
				    (current-clauses ()))
				(do ((clauses (cdr form) (cdr clauses)))
				    ((null? clauses)
				     (lint-format "perhaps ~A" name (lists->string form `(cond ,@(reverse new-clauses)))))
				  (let* ((clause (car clauses))
					 (result (cdr clause))) ; can be null in which case the test is the result
				    (if (and (pair? (cdr clauses))
					     (equal? result (cdar (cdr clauses))))
					(set! current-clauses (cons clause current-clauses))
					(if (pair? current-clauses)
					    (begin
					      (set! current-clauses (cons clause current-clauses))
					      (set! new-clauses (cons 
								 (cons (simplify-boolean `(or ,@(map car (reverse current-clauses))) () () env)
								       result)
								 new-clauses))
					      (set! current-clauses ()))
					    (set! new-clauses (cons clause new-clauses))))))))))
		      env))
		  
		  (define (case-case)
		    ;; ---------------- case ----------------		  
		    ;; here the keys are not evaluated, so we might have a list like (letrec define ...)
		    ;; also unlike cond, only 'else marks a default branch (not #t)
		    (if (< (length form) 3)
			(lint-format "case is messed up: ~A" name (truncated-list->string form))
			(let ((sel-type #t)
			      (selector (cadr form)))
			  (if (and (not (pair? selector))
				   (constant? selector))
			      (lint-format "case selector is a constant: ~A" name (truncated-list->string form)))
			  (lint-walk name selector env)
			  (if (and (pair? selector)
				   (symbol? (car selector)))
			      (begin
				(set! sel-type (return-type (car selector)))
				(if (and (symbol? sel-type)
					 (not (memq sel-type selector-types)))
				    (lint-format "case selector may not work with eqv: ~A" name (truncated-list->string selector)))))
			  (let ((all-keys ())
				(all-exprs ())
				(ctr 0)
				(result :unset)
				(exprs-repeated #f)
				(else-foldable #f)
				(has-else #f)
				(len (length (cddr form))))
			    (for-each
			     (lambda (clause)
			       (set! ctr (+ ctr 1))
			       (if (not (pair? clause))
				   (lint-format "case clause should be a list: ~A" name (truncated-list->string clause))
				   (let ((keys (car clause))
					 (exprs (cdr clause)))
				     (if (null? exprs)
					 (lint-format "clause result is missing: ~A" name clause))
				     (if (eq? result :unset)
					 (set! result exprs)
					 (if (not (equal? result exprs))
					     (set! result :unequal)))
				     (if (member exprs all-exprs)
					 (set! exprs-repeated exprs)
					 (set! all-exprs (cons exprs all-exprs)))
				     (if (and (pair? exprs)
					      (null? (cdr exprs))
					      (pair? (car exprs))
					      (pair? (cdar exprs))
					      (null? (cddar exprs))
					      (equal? selector (cadar exprs)))
					 (lint-format "perhaps use => here: ~A" name 
						      (lists->string clause (list keys '=> (caar exprs)))))
				     (if (pair? keys)
					 (if (not (proper-list? keys))
					     (if (null? keys)
						 (lint-format "null case key list: ~A" name (truncated-list->string clause))
						 (lint-format "stray dot in case case key list: ~A" name (truncated-list->string clause)))
					     (for-each
					      (lambda (key)
						(if (or (vector? key)
							(string? key)
							(pair? key)
							(hash-table? key))
						    (lint-format "case key ~S in ~S is unlikely to work (case uses eqv?)" name key clause))
						(if (member key all-keys)
						    (lint-format "repeated case key ~S in ~S" name key clause)
						    (set! all-keys (cons key all-keys)))
						;; unintentional quote here, as in (case x ('a b)...) never happens and
						;;   is hard to distinguish from (case x ((quote a) b)...) which happens a lot
						(if (not (compatible? sel-type (->type key)))
						    (lint-format "case key ~S in ~S is pointless" name key clause)))
					      keys))
					 (if (not (eq? keys 'else))
					     (lint-format "bad case key ~S in ~S" name keys clause)
					     (begin
					       (set! has-else clause)
					       ;; exprs: (res) or if case, ((case ...)...)
					       (if (not (= ctr len))
						   (lint-format "case else clause is not the last: ~A"
								name 
								(truncated-list->string (cddr form)))
						   (when (and (pair? exprs)
							      (pair? (car exprs))
							      (null? (cdr exprs))         ; just the case statement in the else clause
							      (eq? (caar exprs) 'case)
							      (equal? selector (cadar exprs))
							      (not (side-effect? selector env)))
						     (set! else-foldable (cddar exprs)))))))
				     (lint-walk-body name head exprs env))))
			     (cddr form))
			    (if (and has-else 
				     (pair? result)
				     (not else-foldable))
				(begin
				  (if (null? (cdr result))
				      (lint-format "perhaps ~A" name (lists->string form (car result)))
				      (lint-format "perhaps ~A" name (lists->string form `(begin ,@result))))
				  (set! exprs-repeated #f)))
			    
			    (when (or exprs-repeated else-foldable)
			      (let* ((new-keys-and-exprs ())
				     (else-clause (if else-foldable
						      (call-with-exit
						       (lambda (return)
							 (for-each (lambda (c) (if (eq? (car c) 'else) (return c))) else-foldable)
							 ()))
						      (or has-else ())))
				     (else-exprs (and (pair? else-clause) (cdr else-clause))))
				
				(define (merge-case-keys clause)
					;(format *stderr* "clause: ~S~%" clause)
				  (let ((keys (car clause))
					(exprs (cdr clause)))
				    (when (and (pair? exprs)             ; ignore clauses that are messed up
					       (not (eq? keys 'else))
					       (not (equal? exprs else-exprs)))
				      (let ((prev (member exprs new-keys-and-exprs (lambda (a b) (equal? a (cdr b))))))
					(if prev
					    (let* ((cur-clause (car prev))
						   (cur-keys (car cur-clause)))
					      (when (pair? cur-keys)
						(set-car! cur-clause
							  (append cur-keys
								  (map (lambda (key)
									 (if (memv key cur-keys) (values) key))
								       keys)))))
					    (set! new-keys-and-exprs (cons (cons (copy (car clause)) (cdr clause)) new-keys-and-exprs)))))))
				
				(for-each merge-case-keys (cddr form))
				(if else-foldable
				    (for-each merge-case-keys else-foldable))
				
					;(format *stderr* "~%~A -> new: ~A, else: ~A~%" form new-keys-and-exprs else-clause)
				
				(if (null? new-keys-and-exprs)
				    (if (or (null? else-clause)    ; can this happen? (it's caught above as an error)
					    (null? (cdr else-clause)))
					(lint-format "perhaps ~A" name (lists->string form ()))
					(if (null? (cddr else-clause))
					    (lint-format "perhaps ~A" name (lists->string form (cadr else-clause)))
					    (lint-format "perhaps ~A" name (lists->string form `(begin ,@(cdr else-clause))))))
				    (lint-format "perhaps ~A" name 
						 (lists->string form 
								(if (pair? else-clause)
								    `(case ,(cadr form) ,@(reverse new-keys-and-exprs) ,else-clause)
								    `(case ,(cadr form) ,@(reverse new-keys-and-exprs)))))))))))
		    env)
		  
		  (define (do-case)
		    ;; ---------------- do ----------------		  
		    (let ((vars ()))
		      (if (or (< (length form) 3)
			      (not (proper-list? (cadr form)))
			      (not (proper-list? (caddr form))))
			  (lint-format "do is messed up: ~A" name (truncated-list->string form))
			  
			  (let ((step-vars (cadr form)))
			    
			    (if (not (side-effect? form env))
				(let ((end+result (caddr form)))
				  (if (or (not (pair? end+result))
					  (null? (cdr end+result)))
				      (lint-format "this do-loop could be replaced by (): ~A" name (truncated-list->string form))
				      (if (and (null? (cddr end+result))
					       (code-constant? (cadr end+result)))
					  (lint-format "this do-loop could be replaced by ~A: ~A" name (cadr end+result) (truncated-list->string form))))))
			    
			    ;; walk the init forms before adding the step vars to env
			    (do ((bindings step-vars (cdr bindings)))
				((not (pair? bindings))
				 (if (pair? bindings)
				     (lint-format "do variable list is not a proper list? ~S" name step-vars)))
			      (if (binding-ok? name head (car bindings) env #f)
				  (begin
				    (lint-walk name (cadar bindings) env)
				    (set! vars (append (list (make-var :name (caar bindings) 
								       :typ (->type (cadar bindings)) 
								       :val (and (pair? (cddar bindings)) (caddar bindings))))
						       vars)))))
			    
			    ;; walk the step exprs
			    (do ((bindings step-vars (cdr bindings)))
				((not (pair? bindings)))
			      (let ((stepper (car bindings))) ; the entire binding: '(i 0 (+ i 1))
				(when (and (binding-ok? name head stepper env #t)
					   (pair? (cddr stepper)))
				  (lint-walk name (caddr stepper) (append vars env))
				  (if (eq? (car stepper) (caddr stepper))  ; (i 0 i) -> (i 0)
				      (lint-format "perhaps ~A" name (lists->string stepper (list (car stepper) (cadr stepper)))))
				  (let ((data (var-member (car stepper) vars)))
				    (set! (var-ref data) #f))
				  (when (and (pair? (caddr stepper))
					     (not (eq? (car stepper) (cadr stepper))) ; (lst lst (cdr lst))
					     (eq? (car (caddr stepper)) 'cdr)
					     (eq? (cadr stepper) (cadr (caddr stepper))))
				    (lint-format "this looks suspicious: ~A" name stepper)))))
			    
			    ;; walk the body and end stuff (it's too tricky to find infinite do loops)
			    (if (pair? (caddr form))
				(let ((end+result (caddr form)))
				  (lint-walk-body name head (cddr form) (append vars env))
				  (if (pair? end+result)
				      (let ((end (car end+result)))
					(if (and (symbol? end) (memq end '(= > < >= <= null? not)))
					    (lint-format "perhaps missing parens: ~A" name end+result))
					(if (never-false end)
					    (lint-format "end test is never false: ~A" name end)
					    (if end ; it's not #f
						(if (never-true end)
						    (lint-format "end test is never true: ~A" name end)
						    (let ((v (and (pair? end)
								  (memq (car end) '(< > <= >=))
								  (pair? (cdr end))
								  (symbol? (cadr end))
								  (member (cadr end) vars (lambda (a b) (eq? a (var-name b)))))))
						      ;; if found, v is the var info
						      (when (pair? v)
							(let ((step (var-value (car v))))
							  (when (pair? step)
							    (let ((inc (and (memq (car step) '(+ -))
									    (pair? (cdr step))
									    (pair? (cddr step))
									    (or (and (real? (cadr step)) (cadr step))
										(and (real? (caddr step)) (caddr step))))))
							      (when (real? inc)
								(if (or (and (eq? (car step) '+)
									     (positive? inc)
									     (memq (car end) '(< <=)))
									(and (eq? (car step) '-)
									     (positive? inc)
									     (memq (car end) '(> >=))))
								    (lint-format "do step looks like it doesn't match end test: ~A" name 
										 (lists->string step end))))))))))
						(if (pair? (cdr end+result))
						    (lint-format "result is unreachable: ~A" name end+result)))))))
				(lint-walk-body name head (cdddr form) (append vars env)))
			    
			    ;; before report-usage, check for unused variables, and don't complain about them if
			    ;;   they are referenced in an earlier step expr?(!)
			    (do ((v vars (cdr v)))
				((null? v))
			      (let ((var (car v)))
				(unless (var-ref var)
				  ;; var was not seen in the end+result/body or any subsequent step exprs
				  ;;   vars is reversed order, so we need only scan var-value of the rest
				  
				  (if (side-effect? (var-value var) env)
				      (set! (var-ref var) #t)
				      (for-each
				       (lambda (nv)
					 (if (or (eq? (var-name var) (var-value nv))
						 (and (pair? (var-value nv))
						      (tree-member (var-name var) (var-value nv))))
					     (set! (var-ref var) #t)))
				       (cdr v))))))
			    
			    (report-usage name 'variable head vars)
			    
			    ;; check for do-loop as copy/fill! stand-in
			    (let ((end-test (and (pair? (caddr form)) (caaddr form)))
				  (body (cdddr form))
				  (setv #f))
			      (when (and (pair? end-test)
					 (= (length vars) 1)
					 (= (length body) 1)
					 (pair? (car body)) 
					 (memq (caar body) '(vector-set! float-vector-set! int-vector-set! list-set! string-set!))
					 (eq? (var-type (car vars)) 'integer?)
					 (eq? (car end-test) '=)
					 (eq? (cadr end-test) (var-name (car vars)))
					 (eq? (caddar body) (var-name (car vars)))
					 (let ((val (car (cdddar body))))
					   (set! setv val)
					   (or (code-constant? val)
					       (and (pair? val)
						    (memq (car val) '(vector-ref float-vector-ref int-vector-ref list-ref string-ref))
						    (eq? (caddr val) (var-name (car vars)))))))
				(if (code-constant? setv)
				    (lint-format "perhaps ~A" name 
						 (lists->string form `(fill! ,(cadar body) ,(car (cdddar body)) 0 ,(caddr end-test))))
				    (lint-format "perhaps ~A" name 
						 (lists->string form `(copy ,(cadr setv) ,(cadar body) 0 ,(caddr end-test)))))))))
		      env))
		  
		  (define (let-case)
		    ;; ---------------- let ----------------		  
		    (if (or (< (length form) 3)
			    (and (not (symbol? (cadr form)))
				 (not (list? (cadr form)))))
			(lint-format "let is messed up: ~A" name (truncated-list->string form))
			(let ((named-let (and (symbol? (cadr form)) (cadr form))))
			  (if (keyword? named-let)
			      (lint-format "bad let name: ~A" name named-let))
			  
			  (unless named-let
			    ;; this could be extended to other such cases
			    (or (any? (lambda (var)
					(or (not (pair? var))
					    (not (pair? (cdr var)))
					    (not (code-constant? (cadr var)))))
				      (cadr form))
				(any? (lambda (expr) 
					(side-effect? expr env))
				      (cddr form))
				(catch #t
				  (lambda ()
				    (let ((val (eval (copy-tree form) (rootlet))))
				      (lint-format "perhaps ~A" name (lists->string form val))))
				  (lambda args
				    'error))))
			  
			  (let ((vars (if (and named-let 
					       (not (keyword? named-let))
					       (or (null? (caddr form))
						   (and (proper-list? (caddr form))
							(every? pair? (caddr form)))))
					  (list (make-var named-let 
							  :new (inlet :type head
								      :decl (eval (list 'define (cons '_ (map car (caddr form))) #f))
								      :signature #f
								      :side-effect #t
								      :arglist (map car (caddr form))
								      :definition form
								      :location #__line__)))  ; TODO: named-let*
					  ()))
				(varlist (if named-let (caddr form) (cadr form)))
				(body (if named-let (cdddr form) (cddr form))))
			    
			    (if (not (list? varlist))
				(lint-format "let is messed up: ~A" name (truncated-list->string form))
				(if (and (null? varlist)
					 (pair? body)
					 (null? (cdr body))
					 (not (side-effect? (car body) env)))
				    (lint-format "perhaps ~A" name (lists->string form (car body)))))
			    
			    (do ((bindings varlist (cdr bindings)))
				((not (pair? bindings))
				 (if (pair? bindings)
				     (lint-format "let variable list is not a proper list? ~S" name varlist)))
			      (if (binding-ok? name head (car bindings) env #f)
				  (let ((val (cadar bindings)))
				    (if (and (pair? val)
					     (eq? 'lambda (car val))
					     (not (hash-table-ref globals (caar bindings)))
					     (tree-car-member (caar bindings) val)
					     (not (var-member (caar bindings) env)))
					(lint-format "let variable ~A is called in its binding?  Perhaps let should be letrec: ~A"
						     name (caar bindings) 
						     (truncated-list->string bindings)))
				    (lint-walk name val env)
				    
				    ;; can we tell its type and (as long as not set) check for type errors?
				    ;; need a function that turns a constant into a type indication,
				    ;;   then append that as the 4th entry below (used only in do?)
				    ;;   then use that in arg checks if arg is a known var
				    
				    (set! vars (append (list (make-var (caar bindings) :val val :typ (->type val))) vars)))))
			    ;; each var is (sym ref set opt-type-data new)
			    
			    (let* ((cur-env (append vars env))
				   (e (lint-walk-body name head body cur-env))
				   (nvars (if (null? cur-env)
					      e
					      (and (not (eq? e cur-env))
						   (env-difference name e cur-env ())))))
					;(format *stderr* "nvars: ~A e: ~A~%" nvars e)
			      (if (pair? nvars)
				  (if (eq? (var-name (car nvars)) '[anonymous])
				      (begin
					(set! env (cons (car nvars) env))
					(set! nvars (cdr nvars)))
				      (set! vars (append nvars vars)))))
			    (report-usage name 'variable head vars))))
		    env)
		  
		  (define (let*-case)
		    ;; ---------------- let* ----------------		  
		    (if (< (length form) 3)
			(lint-format "let* is messed up: ~A" name (truncated-list->string form))
			(let ((named-let (and (symbol? (cadr form)) (cadr form))))
			  (let ((vars (if named-let (list (make-var named-let)) ()))
				(varlist (if named-let (caddr form) (cadr form)))
				(side-effects #f))
			    (if (not (list? varlist))
				(lint-format "let* is messed up: ~A" name (truncated-list->string form)))
			    (do ((bindings varlist (cdr bindings)))
				((not (pair? bindings))
				 (if (pair? bindings)
				     (lint-format "let* variable list is not a proper list? ~S" 
						  name (if named-let (caddr form) (cadr form)))))
			      (if (binding-ok? name head (car bindings) env #f)
				  (begin
				    (if (not side-effects)
					(set! side-effects (side-effect? (cadar bindings) env)))
				    (lint-walk name (cadar bindings) (append vars env))
				    (set! vars (append (list (make-var (caar bindings) :val (cadar bindings) :typ (->type (cadar bindings)))) vars)))))
			    
			    (if (and (not side-effects)
				     (not (any? var-ref vars)))
				(lint-format "let* could be let: ~A" name (truncated-list->string form)))
			    
			    ;; in s7, let evaluates var values top down, so this message is correct
			    ;;   even in cases like (let ((ind (open-sound...)) (mx (maxamp))) ...)
			    ;; in r7rs, the order is not specified (section 4.2.2 of the spec), so
			    ;;   here we would restrict this message to cases where there is only
			    ;;   one variable, or where subsequent values are known to be independent.
			    ;; if each function could tell us what globals it depends on or affects,
			    ;;   we could make this work in all cases.
			    
			    (let* ((cur-env (append vars env))
				   (e (lint-walk-body name head (if named-let (cdddr form) (cddr form)) cur-env))
				   (nvars (and (not (eq? e cur-env))
					       (env-difference name e cur-env ()))))
			      (if (pair? nvars)
				  (set! vars (append nvars vars))))
			    
			    (report-usage name 'variable head vars))))
		    env)
		  
		  (define (letrec-case)
		    ;; ---------------- letrec ----------------		  
		    (if (< (length form) 3)
			(lint-format "~A is messed up: ~A" name head (truncated-list->string form))
			(let ((vars ()))
			  (if (null? (cadr form))
			      (lint-format "~A could be let: ~A" name head (truncated-list->string form))
			      (if (not (pair? (cadr form)))
				  (lint-format "~A is messed up: ~A" name head (truncated-list->string form))
				  (if (and (null? (cdadr form))
					   (eq? head 'letrec*)) ; this happens all the time!
				      (lint-format "letrec* could be letrec? ~A" name (truncated-list->string form)))))
			  (do ((bindings (cadr form) (cdr bindings)))
			      ((not (pair? bindings))
			       (if (pair? bindings)
				   (lint-format "letrec variable list is not a proper list? ~S" name (cadr form))))
			    (if (binding-ok? name head (car bindings) env #f)
				(set! vars (append (list (make-var (caar bindings) :val (cadar bindings) :typ (->type (cadar bindings)))) vars))))
			  (let ((new-env (append vars env)))
			    (do ((bindings (cadr form) (cdr bindings)))
				((not (pair? bindings)))
			      (if (binding-ok? name head (car bindings) env #t)
				  (lint-walk name (cadar bindings) new-env)))
			    
			    (let* ((cur-env (append vars env))
				   (e (lint-walk-body name head (cddr form) cur-env))
				   (nvars (and (not (eq? e cur-env))
					       (env-difference name e cur-env ()))))
			      (if (pair? nvars)
				  (set! vars (append nvars vars)))))
			  
			  (report-usage name 'variable head vars)))
		    env)
		  
		  (define (begin-case)
		    ;; ---------------- begin ----------------
		    (if (not (proper-list? form))
			(begin
			  (lint-format "stray dot in begin? ~A" name (truncated-list->string form))
			  env)
			(begin
			  (if (and (pair? (cdr form))
				   (null? (cddr form)))
			      (lint-format "begin could be omitted: ~A" name (truncated-list->string form)))
			  (lint-walk-body name head (cdr form) env)))
		    env)
		  
		  (define (when-case)
		    ;; -------- when, unless --------
		    (if (< (length form) 3)
			(lint-format "~A is messed up: ~A" name head (truncated-list->string form))
			(let ((test (cadr form)))
			  (if (and (pair? test)
				   (eq? (car test) 'not))
			      (lint-format "possible optimization: ~A -> ~A"
					   name 
					   (truncated-list->string form)
					   (truncated-list->string `(,(if (eq? head 'when) 'unless 'when)
								     ,(cadr test)
								     ,@(cddr form)))))
			  (if (never-false test)
			      (lint-format "~A test is never false: ~A" name head form)
			      (if (never-true test)
				  (lint-format "~A test is never true: ~A" name head form)))
			  (if (symbol? test)
			      (set-ref? test env)
			      (if (pair? test)
				  (lint-walk name test env)))
			  (let* ((e (lint-walk-body name head (cddr form) env))
				 (vars (if (not (eq? e env))
					   (env-difference name e env ())
					   ())))
			    (report-usage name 'variable head vars))))
		    env)
		  
		  (define (with-let-case)
		    ;; -------- with-let --------
		    (if (< (length form) 3)
			(lint-format "~A is messed up: ~A" head name (truncated-list->string form))
			(let ((e (cadr form)))
			  (if (or (and (code-constant? e)
				       (not (let? e)))
				  (and (symbol? e)
				       (defined? e)
				       (not (let? (symbol->value e))))
				  (and (pair? e)
				       (let ((op (return-type (car e))))
					 (and op
					      (not (return-type-ok? 'let? op))))))
			      (lint-format "~A: first argument should be an environment: ~A" head name (truncated-list->string form)))
			  (if (symbol? e)
			      (set-ref? e env)
			      (if (pair? e)
				  (begin
				    (if (and (null? (cdr e))
					     (eq? (car e) 'curlet))
					(lint-format "~A is not needed here: ~A" head name (truncated-list->string form)))
				    (lint-walk name e env))))
			  (let ((walked #f))
			    (if (or (and (symbol? e)
					 (memq e '(*gtk* *motif* *gl* *libc* *libm* *libgdbm* *libgsl*)))
				    (and (pair? e)
					 (eq? (car e) 'sublet)
					 (pair? (cdr e))
					 (memq (cadr e) '(*gtk* *motif* *gl* *libc* *libm* *libgdbm* *libgsl*))
					 (set! e (cadr e))))
				(let ((lib (if (not (defined? e))
					       (let ((file (*autoload* e)))
						 (and (string? file) 
						      (load file)))
					       (symbol->value e))))
				  (when (let? lib)
				    (let ((old-e *e*))
				      (set! *e* lib)
				      (let* ((e (lint-walk-body name head (cddr form) env))
					     (vars (if (not (eq? e env))
						       (env-difference name e env ())
						       ())))
					(report-usage name 'variable head vars))
				      (set! *e* old-e)
				      (set! walked #t)))))
			    
			    (unless walked
			      (let* ((e (lint-walk-body name head (cddr form) env))
				     (vars (if (not (eq? e env))
					       (env-difference name e env ())
					       ())))
				(report-usage name 'variable head vars))))))
		    env)
		  
		  (define (else-case)
		    ;; ---------------- everything else ----------------		  
		    (if (not (proper-list? form))
			(begin
			  ;; these appear to be primarily macro arguments
			  (if (and (pair? form)
				   (symbol? (car form))
				   (procedure? (symbol->value (car form) *e*)))
			      (lint-format "unexpected dot: ~A" name (truncated-list->string form)))
			  env)
			(begin
			  (when (symbol? head)
			    (check-call name head form env)
			    (if (not (or (hash-table-ref globals head)
					 (var-member head env)))
				(check-special-cases name head form env))
			    (if (assq head deprecated-ops)
				(lint-format "~A is deprecated; use ~A" name head (cdr (assq head deprecated-ops))))
			    
			    (if (and (not (= line-number last-simplify-numeric-line-number))
				     (not (hash-table-ref globals head))
				     (hash-table-ref numeric-ops head)
				     (not (var-member head env)))
				(let ((val (simplify-numerics form env)))
				  (if (not (equal-ignoring-constants? form val))
				      (begin
					(set! last-simplify-numeric-line-number line-number)
					(lint-format "perhaps ~A" name (lists->string form val))))))
			    
			    ;; if we loaded this file first, and f (head) is defined (e.g. scan above),
			    ;; and it is used before it is defined, but not thereafter, the usage stuff 
			    ;; can get confused, so other-identifiers is trying to track those.
			    
			    (if (and (not (hash-table-ref other-identifiers head))
				     (not (defined? head start-up-let)))
				(hash-table-set! other-identifiers head #t)))
			  
			  (when (and (pair? head)
				     (> (length head) 0)
				     (eq? (car head) 'lambda))
			    (if (and (proper-list? (cadr head))
				     (not (= (length (cadr head)) (length (cdr form)))))
				(lint-format "~A has ~A arguments: ~A" 
					     head (car head) 
					     (if (> (length (cadr head)) (length (cdr form)))
						 "too few" "too many")
					     (truncated-list->string form))))
			  
			  (let ((vars env))
			    (for-each
			     (lambda (f)
			       (set! vars (lint-walk name f vars)))
			     form))
			  ))
		    env)
		  
		  (set! line-number (pair-line-number form))
		  (case head
		    
		    ((define define* 
		       define-constant define-envelope
		       define-expansion define-macro define-macro* define-bacro define-bacro*
		       definstrument defanimal)
		     (define-case))
		    
		    ((lambda lambda*)	  (lambda-case))
		    ((set!)	          (set-case))
		    ((quote) 	          (quote-case))
		    ((cond)	          (cond-case))
		    ((case)	          (case-case))
		    ((do)	          (do-case))
		    ((let)	          (let-case))
		    ((let*)	          (let*-case))
		    ((letrec letrec*)     (letrec-case))
		    ((begin)	          (begin-case))
		    ((when unless)        (when-case))
		    ((with-let)	          (with-let-case))
		    
		    ((defmacro defmacro*) (defmacro-case))
		    ((defgenerator)       (generator-case))
		    ((define-syntax let-syntax letrec-syntax define-module) ; all meaningless in s7
		     ;; actually the real problem with checking other schemes' code is that they use a large number
		     ;; of non-standard # and \ forms.  The # forms can mostly be kludged up via #*readers, but I'm
		     ;; not going to start building in all the crazy \ stuff.  
		     ;; Some schemes use the execrable [] substitutes for () -- Gauche in particular.
		     env)
		    
		    (else
		     (else-case))))
		
		;; else form is not a symbol and not a pair
		env)))
      
    ;;; --------------------------------------------------------------------------------
      (let ((documentation "(lint file port) looks for infelicities in file's scheme code"))
	(lambda* (file (outp *lint-output-port*) (report-input #t))
	  (set! outport outp)
	  (set! globals (make-hash-table))
	  (set! other-identifiers (make-hash-table))
	  (set! loaded-files ())
	  (set! last-simplify-boolean-line-number -1)
	  (set! last-simplify-numeric-line-number -1)
	  (set! last-checker-line-number -1)
	  (set! line-number -1)
	  (set! quote-warnings 0)
	  
	  ;(format *stderr* "lint ~S~%" file)
	  
	  (let ((fp (if (input-port? file)
			file
			(begin
			  (set! *current-file* file)
			  (if *load-file-first* ; this can improve the error checks
			      (load file))
			  (catch #t
			    (lambda ()
			      (let ((p (open-input-file file)))
				(if report-input (format outport ";~A~%" file))
				(set! loaded-files (cons file loaded-files))
				p))
			    (lambda args
			      (format outport "  can't open ~S: ~A~%" file (apply format #f (cadr args)))
			      #f))))))
	    
	    (if (input-port? fp)
		(let ((vars ())
		      (line 0)
		      (last-form #f)
		      (last-line-number -1))
		  (do ((form (read fp) (read fp)))
		      ((eof-object? form))
		    (if (pair? form)
			(set! line (max line (pair-line-number form))))
		    
		    (if (and (not (= last-line-number -1))
			     (not (side-effect? last-form vars)))
			(format outport "  top-level (line ~D): this has no effect: ~A~%" 
				last-line-number
				(truncated-list->string last-form)))
		    (set! last-form form)
		    (set! last-line-number line)
		    (set! vars (lint-walk (if (symbol? form) 
					      form 
					      (and (pair? form) 
						   (car form)))
					  form 
					  vars)))
		  
		  (if (and (pair? vars)
			   *report-multiply-defined-top-level-functions*)
		      (for-each
		       (lambda (var)
			 (let ((var-file (hash-table-ref *top-level-objects* (car var))))
			   (if (not var-file)
			       (hash-table-set! *top-level-objects* (car var) *current-file*)
			       (if (and (string? *current-file*)
					(not (string=? var-file *current-file*)))
				   (format outport ";~S is defined at the top level in ~S and ~S~%" (car var) var-file *current-file*)))))
		       vars))
		  
		  (if (and (string? file)
			   (pair? vars)
			   *report-unused-top-level-functions*)
		      (report-usage file 'top-level-var "" vars))
	      
		  (if (not (input-port? file))
		      (close-input-port fp))))))))))



;;; --------------------------------------------------------------------------------
;;; this reads an HTML file, finds likely-looking scheme code, and runs lint over it.
;;;    called on all snd files in hg.scm

(define (html-lint file)
  
  (define (remove-markups str)
    (let ((tpos (string-position "<b>" str)))
      (if tpos
	  (let ((epos (string-position "</b>" str)))
	    (remove-markups (string-append (substring str 0 tpos)
					   (substring str (+ tpos 3) epos)
					   (substring str (+ epos 4)))))
	  (let ((apos (string-position "<a " str))
		(epos (string-position "<em " str)))
	    (if (and (not apos)
		     (not epos))
		str
		(let* ((pos (if (and apos epos) (min apos epos) (or apos epos)))
		       (bpos (char-position #\> str (+ pos 1)))
		       (epos (if (and apos (= pos apos))
				 (string-position "</a>" str (+ bpos 1))
				 (string-position "</em>" str (+ bpos 1)))))
		  (string-append (substring str 0 pos)
				 (substring str (+ bpos 1) epos)
				 (remove-markups (substring str (+ epos (if (and apos (= apos pos)) 4 5)))))))))))
  
  (define (fixup-html str)
    (let ((pos (char-position #\& str)))
      (if (not pos)
	  str
	  (string-append (substring str 0 pos)
			 (let ((epos (char-position #\; str pos)))
			   (let ((substr (substring str (+ pos 1) epos)))
			     (let ((replacement (cond ((string=? substr "gt") ">")
						      ((string=? substr "lt") "<")
						      ((string=? substr "mdash") "-")
						      ((string=? substr "amp") "&")
						      (else (format #t "unknown: ~A~%" substr)))))
			       (string-append replacement
					      (fixup-html (substring str (+ epos 1)))))))))))
  
  (call-with-input-file file
    (lambda (f)
      (do ((line-num 0 (+ line-num 1))
	   (line (read-line f #t) (read-line f #t)))
	  ((eof-object? line))
	
	;; look for <pre , gather everything until </pre>
	;;   decide if it is scheme code (first char is #\()
	;;   if so, clean out html markup stuff, call lint on that
	
	(let ((pos (string-position "<pre" line)))
	  (if pos
	      (let ((code (substring line (+ (char-position #\> line) 1))))
		(do ((cline (read-line f #t) (read-line f #t))
		     (rline 1 (+ rline 1)))
		    ((string-position "</pre>" cline)
		     (set! line-num (+ line-num rline)))
		  (set! code (string-append code cline)))
		
		;; is first non-whitespace char #\(? ignoring comments
		(let ((len (length code)))
		  (do ((i 0 (+ i 1)))
		      ((>= i len))
		    (let ((c (string-ref code i)))
		      (if (not (char-whitespace? c))
			  (if (char=? c #\;)
			      (set! i (char-position #\newline code i))
			      (begin
				(set! i (+ len 1))
				(if (char=? c #\()
				    (catch #t
				      (lambda ()
					(let ((ncode (with-input-from-string 
							 (fixup-html (remove-markups code))
						       read)))
					  (call-with-output-file "t631-temp.scm"
					    (lambda (fout)
					      (format fout "~S~%" ncode)))
					  (let ((outstr (call-with-output-string
							 (lambda (p)
							   (let ((old-shadow *report-shadowed-variables*))
							     (set! *report-shadowed-variables* #t)
							     (lint "t631-temp.scm" p #f)
							     (set! *report-shadowed-variables* old-shadow))))))
					    (if (> (length outstr) 0)
						(format #t ";~A ~D: ~A~%" file line-num outstr)))))
				      (lambda args
					(format #t ";~A ~D, error in read: ~A ~A~%" file line-num args
						(fixup-html (remove-markups code)))))))))))))))))))