~ubuntu-branches/ubuntu/utopic/lua-rexlib/utopic

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
2012-04-12  Reuben Thomas <rrt@sc3d.org>

	* src/tre/Makefile: Temporarily remove ltre_w.c from being built by
	2.6.0 release.

2012-04-12  Shmuel Zeigerman <solomuz0@gmail.com>

	* NEWS: Update NEWS.

2012-04-11  Reuben Thomas <rrt@sc3d.org>

	* src/defaults.mak: Unix makefiles: bump version to 2.6.0.

2012-04-10  Shmuel Zeigerman <solomuz0@gmail.com>

	* LICENSE, NEWS, README.rst, doc/license.html, doc/manual.txt,
	src/algo.h, windows/mingw/_mingw.mak: Update docs towards the
	release.

2012-04-06  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/tre/ltre.c, src/tre/ltre_w.c, test/runtest.lua: Fix and
	refactor.

2012-04-06  Shmuel Zeigerman <solomuz0@gmail.com>

	* : commit 9441e6762ced48005b0dd64cfafbd96ad02ef5ba Author: Shmuel
	Zeigerman <solomuz0@gmail.com> Date:   Fri Apr 6 11:32:12 2012 +0300

2012-04-05  Reuben Thomas <rrt@sc3d.org>

	* src/common.mak, src/defaults.mak: Parametrize Lua interpreter for
	Lua 5.2 support.

2012-04-04  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/algo.h, windows/mingw/Makefile, windows/mingw/_mingw.mak,
	windows/mingw/rex_gnu.mak, windows/mingw/rex_onig.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak,
	windows/mingw/rex_tre.mak: Add macro REX_CREATEGLOBALVAR.

2012-04-03  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/algo.h, src/common.c, src/common.h, src/gnu/lgnu.c,
	src/oniguruma/lonig.c, src/pcre/lpcre.c, src/posix/lposix.c,
	src/tre/ltre.c, test/runtest.lua, windows/mingw/_mingw.mak,
	windows/mingw/rex_gnu.mak, windows/mingw/rex_onig.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak,
	windows/mingw/rex_tre.mak: Lua 5.2 compatibility.

2012-02-28  Shmuel Zeigerman <solomuz0@gmail.com>

	* windows/mingw/_mingw.mak, windows/mingw/rex_gnu.mak,
	windows/mingw/rex_onig.mak, windows/mingw/rex_pcre.mak,
	windows/mingw/rex_spencer.mak, windows/mingw/rex_tre.mak: MinGW
	makefiles: removed -L<path>.

2012-02-17  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/algo.h, src/gnu/lgnu.c, src/oniguruma/lonig.c,
	src/pcre/lpcre.c, src/posix/lposix.c, src/tre/ltre.c,
	src/tre/ltre_w.c: Make internal function names more consistent.

2012-02-13  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/common.c, src/common.h, src/tre/Makefile, src/tre/ltre_w.c,
	test/tre_sets.lua, windows/mingw/_mingw.mak,
	windows/mingw/rex_gnu.mak, windows/mingw/rex_onig.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak,
	windows/mingw/rex_tre.mak: TRE binding: add wide-character
	functions.

2012-02-13  Shmuel Zeigerman <solomuz0@gmail.com>

	* doc/manual.txt, src/algo.h, src/common.c, src/gnu/lgnu.c,
	src/oniguruma/lonig.c, src/pcre/lpcre.c, src/posix/lposix.c,
	src/tre/Makefile, src/tre/ltre.c, test/common_sets.lua,
	test/tre_sets.lua, windows/mingw/rex_tre.mak: Removed function
	plainfind.

2012-02-12  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/algo.h, src/common.c, src/common.h, src/tre/ltre_w.c,
	test/tre_sets.lua: TRE binding: add wide-character functions.

2012-02-12  Shmuel Zeigerman <solomuz0@gmail.com>

	* test/tre_sets.lua: Test suite: avoid using sysutils library.

2012-02-12  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/algo.h, src/tre/Makefile, src/tre/ltre.c, src/tre/ltre_w.c,
	test/luatest.lua, test/runtest.lua, test/tre_sets.lua,
	windows/mingw/_mingw.mak, windows/mingw/rex_tre.mak: 1. TRE binding: add wide-character functions.  2. Test suite: fix and refactor.

2012-01-22  Shmuel Zeigerman <solomuz0@gmail.com>

	* README.rst, doc/Makefile, windows/mingw/docs.mak: Fix hyperlinks

2012-01-22  Shmuel Zeigerman <solomuz0@gmail.com>

	* README.rst: Fix links in README.rst

2012-01-22  Shmuel Zeigerman <solomuz0@gmail.com>

	* README.rst: Fix links in README.rst

2012-01-21  Shmuel Zeigerman <solomuz0@gmail.com>

	* README, README.rst: Rename README to README.rst

2012-01-07  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/oniguruma/lonig.c: Tidy up

2011-12-22  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/pcre/lpcre_f.c: lpcre_f.c: added flags up to PCRE version 8.21

2011-12-22  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/gnu/lgnu.c, src/oniguruma/lonig.c, src/pcre/lpcre.c,
	src/posix/lposix.c, src/tre/ltre.c: luaL_reg replaced with luaL_Reg

2011-10-05  Shmuel Zeigerman <solomuz0@gmail.com>

	* test/luatest.lua: luatest.lua: 1) bugfix; 2) don't use `module'
	function;

2011-09-10  Shmuel Zeigerman <solomuz0@gmail.com>

	* src/pcre/lpcre_f.c: lpcre_f.c: added flags up to PCRE version
	8.13.

2011-03-22  Reuben Thomas <rrt@sc3d.org>

	* src/common.mak: Improve portability to Darwin.

2011-03-12  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Fix double space.

2011-02-08  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Remove accidentally inserted lines.

2010-12-15  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Remind maintainer to make release manually on LuaForge.

2010-12-15  Reuben Thomas <rrt@sc3d.org>

	* src/defaults.mak: Bump minor version.

2010-12-15  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h: Add a FIXME not to repeat version.

2010-12-15  Reuben Thomas <rrt@sc3d.org>

	* NEWS: Update NEWS for 2.5.3.

2010-12-15  shmuz <shmuz@013net.net>

	* src/algo.h, src/pcre/lpcre_f.c: 1. fix rex.split (offset was out-of-range) 2. PCRE: add new flags from PCRE 8.11

2010-11-11  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Add definition of missing VERSION.

2010-11-11  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Add release target.

2010-11-11  Reuben Thomas <rrt@sc3d.org>

	* .gitignore: Add release-notes.

2010-11-11  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Suffix distribution zip's top-level directory with the
	version number.

2010-11-10  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Exclude zip files from dist zip\!

2010-11-10  Reuben Thomas <rrt@sc3d.org>

	* NEWS: Add NEWS for 2.5.2.

2010-11-10  Reuben Thomas <rrt@sc3d.org>

	* src/defaults.mak: Bump version to 2.5.2.

2010-11-10  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/Makefile: Undo a mistakenly-committed change.

2010-11-10  Reuben Thomas <rrt@sc3d.org>

	* src/common.c: Fix memory alignment bug. (Shmuel)

2010-11-05  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Remove duplicate information. (Shmuel)

2010-10-26  Reuben Thomas <rrt@sc3d.org>

	* doc/Makefile, src/gnu/Makefile, windows/mingw/Makefile,
	windows/mingw/_mingw.mak, windows/mingw/docs.mak,
	windows/mingw/rex_gnu.mak, windows/mingw/rex_onig.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak,
	windows/mingw/rex_tre.mak: Improve portability of build system.
	(Shmuel)

2010-10-05  Reuben Thomas <rrt@sc3d.org>

	* : commit b9b9d1407309e189c551a9c689c94a2875ec6219 Author: Reuben
	Thomas <rrt@sc3d.org> Date:   Tue Oct 5 13:25:11 2010 +0100

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* windows/mingw/_mingw.mak: Remove useless comment. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* Makefile, src/defaults.mak: Add minor version number MINORV for
	building Zip files.

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* NEWS, src/algo.h: Bump version and add news for 2.5.1.

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* ChangeLog.old: Re-add old ChangeLog as ChangeLog.old. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* README: Mention that TRE and Oniguruma bindings are incomplete.
	(Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* windows/mingw/Makefile, windows/mingw/_mingw.mak: Make new
	libraries build on mingw and improve Makefile. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Fix incorrect documentation. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* test/emacs_sets.lua, test/gnu_sets.lua: Remove incorrect comments
	and add a test. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/regex.h, src/gnu/regex_internal.h: Remove GNU regex files.
	(Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* README: Fix typo. (Shmuel)

2010-10-04  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Don't copy generated file over original; exclude SCiTE
	properties files from dist.

2010-10-03  Reuben Thomas <rrt@sc3d.org>

	* test/gnu_sets.lua: Change name of flag in test.

2010-10-03  Reuben Thomas <rrt@sc3d.org>

	* doc/.gitignore: Add index.txt.

2010-10-03  Reuben Thomas <rrt@sc3d.org>

	* README, doc/Makefile, doc/index.txt: Use doc/index.txt as README.

2010-10-03  Reuben Thomas <rrt@sc3d.org>

	* .gitignore: Remove README.

2010-09-12  Reuben Thomas <rrt@sc3d.org>

	* NEWS: Update date in NEWS for 2.5.0 release.

2010-09-12  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/Makefile, src/gnu/lgnu.c, src/gnu/regex.h,
	src/gnu/regex_internal.h: Add gnulib regex headers, and settings to
	lgnu.c and Makefile to build against gnulib (but the actual building
	must be done elsewhere at the moment).

2010-09-12  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt, src/gnu/lgnu.c, test/emacs_sets.lua: Remove
	gnu_rex.setsyntax, reimplement syntax flags as compilation flags,
	adding the per-feature flags (which is why we need them to be
	numbers, not strings, so they can be combined).  Hence, remove the special syn argument from the constructors,
	and alter the tests accordingly.  Improve the documentation of GNU regex in one or two places.  Rename the reverse execution flag to backward, for
	clarity.

2010-09-10  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Fix some erroneous markup fixing in last commit
	but one.

2010-09-10  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Document the translation parameter for GNU regexs.

2010-09-10  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Improve documentation of syntax parameters, and
	make some use of markup slightly more consistent.

2010-08-20  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c, src/pcre/lpcre.c, src/posix/lposix.c,
	src/tre/ltre.c: Shorten if (p) free(p) to free(p) and fix a space
	leak in gnu.c (call regfree).

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* LICENSE, Makefile, NEWS, doc/Makefile, doc/SciTE.properties,
	doc/html4css1.css, doc/index.txt, doc/license.html,
	doc/lrexlib.css, src/algo.h, src/common.c, src/common.h,
	src/common.mak, src/defaults.mak, src/gnu/Makefile, src/gnu/lgnu.c,
	src/oniguruma/Makefile, src/oniguruma/lonig.c,
	src/oniguruma/lonig_f.c, src/pcre/Makefile, src/pcre/lpcre.c,
	src/pcre/lpcre_f.c, src/posix/Makefile, src/posix/lposix.c,
	src/tre/Makefile, src/tre/ltre.c, test/README,
	test/common_sets.lua, test/emacs_sets.lua, test/gnu_sets.lua,
	test/luatest.lua, test/onig_sets.lua, test/pat2pcre.lua,
	test/pcre_sets.lua, test/pcre_sets2.lua, test/posix_sets.lua,
	test/runtest.lua, test/scite.properties, test/spencer_sets.lua,
	windows/mingw/Makefile, windows/mingw/_mingw.mak,
	windows/mingw/rex_onig.mak, windows/mingw/rex_pcre.mak,
	windows/mingw/rex_spencer.mak: Fix permissions: remove spurious
	executable permissions.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* NEWS: Write NEWS for 2.5.0.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* windows/mingw/rex_tre.mak: Add rex_tre.mak from Shmuel.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* doc/Makefile: Remove old commented-out -gt which is not documented
	in rst2html(1).  Change default name of app to rst2html in accordance with common
	installed name.  Add a clean target.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Fix up errors: mostly remove links that now point
	to index.txt.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* doc/license.html: Update version and years in license.html.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Make dist depend on all, and build docs as part of all.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* .gitignore, Makefile, src/common.mak, src/defaults.mak: Write the
	rest of the dist target to build a release zip.  Move make variable V into defaults.mak, which can be included from
	top-level Makefile, and used to name the zip.  In release Zip, copy doc/index.txt to README.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* src/.cvsignore, src/gnu/.cvsignore, src/oniguruma/.cvsignore,
	src/pcre/.cvsignore, src/posix/.cvsignore: Remove unneeded
	.cvsignore files.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* .gitignore: Add distribution archive and ChangeLog to ignore list.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* doc/.cvsignore, doc/.gitignore: Make .gitignore from .cvsignore

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Add initialiser to avoid compiler warnings.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* test/posix_sets.lua: Fix fixes to NOTBOL tests. Sorry, Shmuel.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* windows/mingw/rex_gnu.mak: Add mingw makefile for GNU, from
	Shmuel.

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* test/posix_sets.lua: Fix other NOTBOL tests (thanks, Shmuel!).

2010-08-01  Reuben Thomas <rrt@sc3d.org>

	* win32bin/lrexlib/LICENSE, win32bin/pcre/LICENCE,
	win32bin/readme.txt, win32bin/rxspencer/COPYRIGHT: Remove
	out-of-date binary win32 builds, as agreed with Shmuel.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Document GNU library flags.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h, src/gnu/lgnu.c, src/oniguruma/lonig.c,
	src/pcre/lpcre.c: Simplify collection of extra compilation
	arguments.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* Makefile, src/common.mak: To be more compatible with GNU
	autotools, make check target depend on all, and make
	previous build target the new all target.  Make the comment in top-level Makefile about where to look for user
	settings include defaults.mak.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c, test/gnu_sets.lua: Implement reverse searching in
	GNU, and add a test for it.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* test/gnu_sets.lua, test/posix_sets.lua: Fix two that use the
	not beginning of line flag (POSIX & GNU). They erroneously had
	the subject ^abc, not abc, so would always pass (because
	the pattern ^abc would never match). Of course, they still
	pass with the flag set, but I have confirmed that they now fail with
	the flag removed (whereas before they passed).

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* doc/index.txt, doc/manual.txt: Merge duplicate material between
	index.txt and manual.txt.  Fix names of GNU and TRE shared library files in manual.txt.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* README, doc/index.txt: Remove README (use index.txt instead).

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* Makefile, src/common.mak, src/gnu/Makefile,
	src/oniguruma/Makefile, src/pcre/Makefile, src/posix/Makefile,
	src/tre/Makefile: Simplify the build system, adding the test target
	to common.mak (and renaming it check for compatibility with
	GNU autotools), and using a list of library names to perform the
	top-level build, check and clean targets, rather than hand-written
	targets for each library.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* ChangeLog, Makefile: Remove ChangeLog from repository; use git2cl
	to generate it.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Remove unnecessary .PHONY target.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* Makefile, src/gnu/Makefile, src/gnu/rex_gnu.mak,
	src/oniguruma/Makefile, src/oniguruma/rex_onig.mak,
	src/pcre/Makefile, src/pcre/rex_pcre.mak, src/posix/Makefile,
	src/posix/rex_posix.mak, src/tre/Makefile, src/tre/rex_tre.mak: 
	Rename per-library makefiles to Makefile.

2010-07-31  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Use custom eflags codes so we can add one for
	backwards searching, and add a reverse flag to TGnu.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Remove a couple of eflags which cant be used as
	eflags (oops).  Remove the commented-out reverse-search functions and methods
	(well use an extra argument to the existing functions and methods
	instead).

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h: Simplify some code, and fix some formatting.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* test/gnu_sets.lua: Add test for execution flags.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h: Update Lua function prototypes in comments.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Add execution flags for GNU.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h: Bump a missed version to 2.5.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Move the documentation of the library-specific
	compile-time arguments into the documentation of each librarys
	new method; just refer to larg (library arguments) elsewhere.  Add some missing documentation for GNU.  Make the layout of the argument tables a little more consistent.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* test/gnu_sets.lua, test/runtest.lua: Add GNU-specific test (of
	translation tables).

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Tweak for clarity.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c: Fix typo in commit
	b7161ee8963352d140cd35f9d26d345d58047227.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* Makefile: Add TRE targets and add TRE and GNU targets to global
	targets.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/tre/rex_tre.mak: Fix some bitrot in rex_tre.mak.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/pcre/lpcre.c, src/tre/ltre.c: Fix up some uses of ALG_NOMATCH
	missed earlier.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Add URL for GNU regex.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* test/README: Don't bother listing possible libraries; they're
	obvious, and this is just another list to keep up to date.

2010-07-30  Reuben Thomas <rrt@sc3d.org>

	* src/algo.h, src/gnu/lgnu.c, src/oniguruma/lonig.c,
	src/pcre/lpcre.c, src/posix/lposix.c, src/tre/ltre.c: Change
	ALG_NOMATCH to a macro that takes an argument, like ALG_ISMATCH,
	because the GNU API can return two different error codes.

2010-07-29  Reuben Thomas <rrt@sc3d.org>

	* src/gnu/lgnu.c, test/emacs_sets.lua: Implement per-regex syntax.
	Use this in the tests, but because most of the test harnesses are
	not set up for extra compile-time arguments, discard most of the
	tests in emacs_sets. Shmuel was happy with this idea; its similar
	to what other bindings do.  Remove per-regex cflags, as the GNU API doesnt have any.

2010-07-26  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt, src/algo.h, src/common.h, src/gnu/lgnu.c,
	test/emacs_sets.lua, test/runtest.lua: Various improvements to GNU
	regex support: 1. Change default syntax to POSIX_EXTENDED, as agreed with Shmuel.  2. Add setsyntax function to set the syntax. Use it to run a much    smaller emacs_sets.lua, while using common_sets.lua (with normal    syntax) as the main test.  This commit also introduces preliminary untested code to support
	translation arrays, and code to parse a syntax argument so per-regex
	syntax can be selected.

2010-07-26  Reuben Thomas <rrt@sc3d.org>

	* doc/manual.txt: Merge TRE and GNU documentation into manual.

2010-07-26  Reuben Thomas <rrt@sc3d.org>

	* .gitignore: Ignore common backup and object file names.

2010-07-20  rrt <rrt>

	* LICENSE, README, doc/index.txt, doc/manual.txt, src/common.mak: 
	Bump version to 2.5.  Fix Shmuels email address in index.txt.  Add some very preliminary documentation for the GNU regex library.

2010-07-20  rrt <rrt>

	* Makefile: Fix clean_gnu and test_gnu to use the right env var
	(thanks, Shmuel!).

2010-07-19  rrt <rrt>

	* Makefile, src/gnu/.cvsignore, src/gnu/lgnu.c,
	src/gnu/rex_gnu.mak, test/emacs_sets.lua, test/runtest.lua: Add a
	new regex engine: GNU regex.  This checkin contains simply a first rough cut of the new code,
	which passes the existing tests (but rewritten for Emacs syntax, in
	emacs_sets.lua).  Documentation and complete code to expose the unique features of GNU
	regex is yet to come.

2010-07-06  shmuz <shmuz>

	* ChangeLog, src/oniguruma/lonig.c: Casts to suppress compiler
	warnings.

2010-07-05  shmuz <shmuz>

	* ChangeLog, src/pcre/lpcre_f.c: lpcre_f.c: added flags up to PCRE
	version 8.10.

2010-03-12  shmuz <shmuz>

	* README: email address updated

2010-03-12  rrt <rrt>

	* README: Mention TRE in README.

2010-01-19  shmuz <shmuz>

	* ChangeLog, src/algo.h, src/common.h, src/oniguruma/lonig.c,
	src/pcre/lpcre.c: several files: luaL_typerror renamed to
	luaL_typeerror (as in Lua 5.2).  common.h: added a macro for
	handling luaL_typeerror and luaL_typerror.

2009-11-29  shmuz <shmuz>

	* ChangeLog, src/tre/ltre.c: * ltre.c: changes to adapt to TRE 0.8     1) #include <tre/tre.h> (was: <tre/regex.h>).      2) added tre_ prefix to all TRE functions.

2009-11-09  shmuz <shmuz>

	* ChangeLog, src/pcre/lpcre_f.c: lpcre_f.c: added flags up to PCRE
	version 8.00.

2008-08-16  shmuz <shmuz>

	* src/algo.h: eliminate a warning on 64 bit systems: cast to pointer
	from integer of different size

2008-08-05  shmuz <shmuz>

	* README: The definition of Lrexlib edited.

2008-08-05  shmuz <shmuz>

	* doc/index.txt: The definition of Lrexlib edited.

2008-08-04  shmuz <shmuz>

	* test/README: prepare to release 2.4.0

2008-08-04  shmuz <shmuz>

	* ChangeLog, NEWS, doc/manual.txt, src/oniguruma/lonig.c,
	src/oniguruma/lonig_f.c: prepare to release 2.4.0

2008-08-01  shmuz <shmuz>

	* doc/manual.txt: corrections

2008-08-01  shmuz <shmuz>

	* Makefile, test/runtest.lua: force-reload the tested library;
	makefile reverted;

2008-07-31  niklas <niklas>

	* Makefile: Unset LUA_INIT before running tests to avoid problems

2008-07-30  niklas <niklas>

	* doc/manual.txt: English fixes.

2008-07-30  niklas <niklas>

	* src/oniguruma/.cvsignore, src/pcre/.cvsignore,
	src/posix/.cvsignore: Add .cvsignore files to ignore .so's.

2008-07-30  niklas <niklas>

	* doc/.cvsignore: Add .cvsignore file for generated HTML files

2008-07-30  niklas <niklas>

	* src/oniguruma/lonig.c, src/oniguruma/lonig_f.c: Remove a stray
	_cdecl.  Change stricmp (non-standard name) to strcasecmp (POSIX 2001 name).  Change include path for oniguruma.h. If installed under
	/usr/include/oniguruma, an additional -I flag is needed; on Ubuntu
	(and hence presumably Debian) the include files are stored directly
	under /usr/include.

2008-07-30  niklas <niklas>

	* src/oniguruma/rex_onig.mak, src/pcre/rex_pcre.mak,
	src/posix/rex_posix.mak: Fix makefile paths for common files.

2008-07-30  shmuz <shmuz>

	* windows/mingw/Makefile, windows/mingw/rex_onig.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak: Changes
	related to Oniguruma addition and directory layout change.

2008-07-30  shmuz <shmuz>

	* Makefile, doc/manual.txt, src/algo.h, src/common.h,
	test/onig_sets.lua, test/runtest.lua: Changes related to Oniguruma
	addition and directory layout change.

2008-07-30  shmuz <shmuz>

	* src/oniguruma/lonig.c, src/oniguruma/lonig_f.c,
	src/oniguruma/rex_onig.mak, src/pcre/lpcre.c, src/pcre/lpcre_f.c,
	src/pcre/rex_pcre.mak, src/posix/lposix.c, src/posix/rex_posix.mak,
	src/tre/ltre.c, src/tre/rex_tre.mak: 1) Moving files: each binding to its dedicated directory.  2) Oniguruma binding added.

2008-07-30  shmuz <shmuz>

	* src/lpcre.c, src/lpcre_f.c, src/lposix.c, src/ltre.c,
	src/rex_pcre.mak, src/rex_posix.mak, src/rex_tre.mak,
	src/scite.properties: Moving files: each binding to its dedicated
	directory.

2008-06-22  shmuz <shmuz>

	* test/luatest.lua: a little fix

2008-06-15  shmuz <shmuz>

	* doc/manual.txt: one sentence reworded

2008-06-15  shmuz <shmuz>

	* doc/index.txt, doc/license.html, doc/manual.txt: update version
	and copyright strings (prepare to release 2.4)

2008-06-14  shmuz <shmuz>

	* LICENSE, README: update version and copyright strings (prepare to
	release 2.4)

2008-06-14  shmuz <shmuz>

	* ChangeLog, src/algo.h, src/common.h, src/common.mak, src/lpcre.c,
	src/lposix.c, src/ltre.c, test/common_sets.lua: [API extension] All
	functions receiving string-type regex accept a compiled regex too.
	If this is the case, cf and lo arguments are ignored (should be
	either supplied as nils or omitted).

2008-05-31  shmuz <shmuz>

	* NEWS: release 2.3.0

2008-05-30  shmuz <shmuz>

	* doc/index.txt, doc/manual.txt: update version and copyright
	strings (prepare to release 2.3)

2008-05-30  shmuz <shmuz>

	* windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak: name of
	the Lua DLL to link to made configurable

2008-05-30  shmuz <shmuz>

	* doc/lrexlib.css: reverted; didn't like the current version;

2008-05-28  shmuz <shmuz>

	* LICENSE, NEWS, README, doc/license.html, src/common.mak: update
	version and copyright strings (prepare to release 2.3)

2008-05-28  shmuz <shmuz>

	* test/runtest.lua: little fix

2008-05-28  shmuz <shmuz>

	* windows/mingw/Makefile, windows/mingw/_mingw.mak,
	windows/mingw/rex_pcre.mak, windows/mingw/rex_spencer.mak: files
	added (as part of directory rename)

2008-05-28  shmuz <shmuz>

	* windows/dev-cpp/Makefile, windows/dev-cpp/_devcpp.mak,
	windows/dev-cpp/rex_pcre.mak, windows/dev-cpp/rex_spencer.mak: 
	directory removed (as part of its rename)

2008-05-09  shmuz <shmuz>

	* ChangeLog, src/lpcre_f.c: Added a new flag from PCRE-7.7.

2008-05-02  shmuz <shmuz>

	* test/runtest.lua: GNU regex test added to the list of available
	tests.

2008-04-08  shmuz <shmuz>

	* src/lpcre.c: cosmetics

2008-03-30  shmuz <shmuz>

	* ChangeLog: [no log message]

2008-03-30  shmuz <shmuz>

	* doc/index.txt: Lrexlib version changed to 2.3.

2008-03-30  shmuz <shmuz>

	* doc/manual.txt: Two new methods (match and find). Lrexlib version
	changed to 2.3.

2008-03-30  shmuz <shmuz>

	* test/common_sets.lua: Add tests for new methods (match and find).

2008-03-30  shmuz <shmuz>

	* src/algo.h, src/lpcre.c, src/lposix.c, src/ltre.c: Add two new
	methods (find and match). Refactoring.

2008-03-25  shmuz <shmuz>

	* ChangeLog: [no log message]

2008-03-25  shmuz <shmuz>

	* test/common_sets.lua: set_f_plainfind: add tests with empty
	patterns.

2008-03-25  shmuz <shmuz>

	* src/algo.h: plainfind_func: optimize for speed.  plainfind_func:
	treat empty patterns as valid.

2008-03-25  shmuz <shmuz>

	* test/luatest.lua: refactoring

2008-01-12  rrt <rrt>

	* doc/manual.txt: Fix English.

2007-12-29  shmuz <shmuz>

	* NEWS: release 2.2.2

2007-12-27  shmuz <shmuz>

	* test/runtest.lua: small fix

2007-12-27  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-12-27  shmuz <shmuz>

	* Makefile: add -d../src to testing commands, for testing the
	freshly built libraries rather than the installed ones

2007-12-27  shmuz <shmuz>

	* test/runtest.lua: add new command-line switch -d<directory> that
	will prepend <directory> to package.cpath

2007-12-27  shmuz <shmuz>

	* test/common_sets.lua, test/pcre_sets.lua, test/pcre_sets2.lua,
	test/spencer_sets.lua: move tests with NULs in subject from
	common_sets.lua into other set files

2007-12-19  shmuz <shmuz>

	* ChangeLog: spelling

2007-12-19  shmuz <shmuz>

	* ChangeLog: spelling

2007-12-19  shmuz <shmuz>

	* src/common.mak: express "ld" and "-shared" via variables

2007-12-19  shmuz <shmuz>

	* Makefile: separate PCRE and POSIX targets

2007-12-19  shmuz <shmuz>

	* src/algo.h, src/lpcre.c, src/lposix.c, src/ltre.c: refactoring
	(ALG_GETCFLAGS redefined)

2007-12-19  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-10-25  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-10-25  shmuz <shmuz>

	* src/algo.h: version string updated to "Lrexlib 2.2.1"

2007-10-24  shmuz <shmuz>

	* NEWS: release 2.2.1

2007-09-26  shmuz <shmuz>

	* src/lpcre_f.c: refactoring

2007-09-25  shmuz <shmuz>

	* ChangeLog, src/lpcre_f.c: added new flags from PCRE-7.4

2007-09-20  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-09-20  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-09-20  shmuz <shmuz>

	* test/common_sets.lua: (set_m_exec): one test added

2007-09-20  shmuz <shmuz>

	* src/algo.h: (generic_tfind): bugfix

2007-09-20  shmuz <shmuz>

	* src/lpcre_f.c: added a new flag from PCRE-7.3

2007-06-18  shmuz <shmuz>

	* NEWS: release 2.2.0

2007-06-18  rrt <rrt>

	* doc/manual.txt: Fix English

2007-06-12  shmuz <shmuz>

	* doc/index.txt: removed link to Lua lisence

2007-06-11  shmuz <shmuz>

	* NEWS: [no log message]

2007-06-10  shmuz <shmuz>

	* ChangeLog, Makefile, NEWS, src/algo.h, windows/dev-cpp/Makefile,
	windows/dev-cpp/_devcpp.mak, windows/dev-cpp/rex_pcre.mak,
	windows/dev-cpp/rex_spencer.mak: [no log message]

2007-06-08  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-06-08  shmuz <shmuz>

	* doc/manual.txt: minor correction

2007-06-08  shmuz <shmuz>

	* test/pcre_sets.lua: locale tests commented out

2007-06-08  shmuz <shmuz>

	* src/algo_t.h: the contents moved to file common.h

2007-06-08  shmuz <shmuz>

	* src/algo.h, src/common.h, src/lpcre.c, src/lposix.c, src/ltre.c,
	src/rex_pcre.mak, src/rex_posix.mak, src/rex_tre.mak: updated due to
	removal of file algo_t.h

2007-05-04  shmuz <shmuz>

	* src/rex_pcre.mak, src/rex_posix.mak, src/rex_tre.mak: added
	dependency on algo_t.h

2007-05-03  shmuz <shmuz>

	* NEWS: update

2007-05-03  shmuz <shmuz>

	* src/lpcre.c: refactoring

2007-05-03  shmuz <shmuz>

	* doc/manual.txt: small fix

2007-05-03  shmuz <shmuz>

	* test/pcre_sets.lua: several tests fixed

2007-05-03  shmuz <shmuz>

	* ChangeLog, doc/manual.txt, src/lpcre.c: settables: removed API
	function.

2007-05-02  shmuz <shmuz>

	* doc/Makefile: add .py extension to work under Windows

2007-05-02  rrt <rrt>

	* doc/Makefile, doc/index.html, doc/manual.html: Remove generated
	HTML files from CVS, and make Makefile work a bit more widely
	compatible.

2007-05-02  shmuz <shmuz>

	* doc/Makefile: [no log message]

2007-05-02  shmuz <shmuz>

	* src/algo.h, src/lpcre.c, src/lposix.c, src/ltre.c: refactoring
	(adding ALG_ prefix to many macros)

2007-05-02  rrt <rrt>

	* ChangeLog: Cosmetic fix to ChangeLog only

2007-05-02  shmuz <shmuz>

	* src/algo_t.h: make struct definitions visible to the file parts
	lying above the line #include algo.h.

2007-05-02  shmuz <shmuz>

	* test/pcre_sets.lua: tests with PCRE cflags as a string

2007-05-02  shmuz <shmuz>

	* src/lposix.c, src/ltre.c: refactoring

2007-05-02  shmuz <shmuz>

	* src/lpcre_f.c: added a new flag from PCRE-7.1.

2007-05-02  shmuz <shmuz>

	* src/lpcre.c: [API extension]: cflags may be specified by a string.

2007-05-02  shmuz <shmuz>

	* src/algo.h: move part of the file to algo_t.h

2007-05-02  shmuz <shmuz>

	* doc/manual.html, doc/manual.txt: describe PCRE cflags as a string

2007-05-02  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-04-22  rrt <rrt>

	* Makefile: "make all" now runs tests; add "make build" just to
	build.

2007-04-21  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-04-21  shmuz <shmuz>

	* test/luatest.lua: (eq): no more relying on tostring giving different strings for
	different tables.

2007-04-21  rrt <rrt>

	* src/defaults.mak: I committed my modified settings by mistake;
	reinstate the defaults.

2007-04-21  rrt <rrt>

	* src/lpcre.c: Avoid compiler warning about differing signs in
	pointer targets.

2007-04-20  rrt <rrt>

	* src/common.mak, src/rex_pcre.mak, src/rex_posix.mak,
	src/rex_tre.mak: Make per-library INC and LIB variables work again.

2007-04-20  rrt <rrt>

	* src/common.mak, src/defaults.mak, src/rex_pcre.mak,
	src/rex_posix.mak, src/rex_tre.mak: Place all common parts of the
	makefiles in defaults.mak (settings, basically the same as old
	common.mak) and common.mak (rules).

2007-04-20  shmuz <shmuz>

	* ChangeLog, src/common.c, src/common.h, src/ltre.c: ltre.c
	(get_int_field, set_int_field): moved to common.c.

2007-04-20  shmuz <shmuz>

	* src/common.c, src/common.h: ltre.c (get_int_field, set_int_field):
	moved to common.c.

2007-04-20  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-04-20  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-04-20  shmuz <shmuz>

	* Makefile: a little fix

2007-04-19  rrt <rrt>

	* Makefile, src/rex_tre.mak: Add build system support for TRE on
	POSIX systems.

2007-04-19  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-04-19  shmuz <shmuz>

	* doc/index.html, doc/manual.html, doc/manual.txt, src/algo.h,
	src/common.c, src/common.h, src/lpcre.c, src/lposix.c, src/ltre.c,
	test/common_sets.lua, test/pcre_sets.lua, test/pcre_sets2.lua,
	test/runtest.lua: many changes -- see Changelog

2007-04-18  rrt <rrt>

	* src/algo.h, src/lpcre.c, src/lposix.c, src/ltre.c: Fix some
	compiler warnings.

2007-03-19  shmuz <shmuz>

	* src/rex_pcre.mak, src/rex_posix.mak: algo.h: added to
	prerequisites

2007-03-19  shmuz <shmuz>

	* ChangeLog, src/algo.h, src/lpcre.c, src/lposix.c, src/ltre.c: 
	improved userdata validity check

2007-03-18  rrt <rrt>

	* doc/lrexlib.css: Add line to bottom of table too

2007-03-18  rrt <rrt>

	* doc/lrexlib.css: Make the table borders more like
	publication-quality

2007-03-17  shmuz <shmuz>

	* src/algo.h, src/ltre.c, test/spencer_sets.lua: many changes: see
	ChangeLog

2007-03-17  shmuz <shmuz>

	* ChangeLog, LICENSE, README, doc/index.txt, doc/license.html,
	doc/manual.html, doc/manual.txt, src/common.c, src/common.h,
	src/lpcre.c, src/lpcre_f.c, src/lposix.c, src/rex_pcre.mak,
	src/rex_posix.mak, src/scite.properties, test/common_sets.lua,
	test/pcre_sets.lua, test/pcre_sets2.lua: many changes: see ChangeLog

2007-02-14  shmuz <shmuz>

	* LICENSE, README, src/rex_pcre.mak, src/rex_posix.mak: version
	number updated to 2.1

2007-02-13  shmuz <shmuz>

	* doc/index.html, doc/index.txt, doc/license.html: added files for
	Lrexlib homepage

2007-02-13  shmuz <shmuz>

	* NEWS, src/common.c, win32bin/readme.txt: release 2.1.0

2007-02-12  shmuz <shmuz>

	* ChangeLog, doc/manual.html, doc/manual.txt, src/common.c,
	src/common.h, src/lpcre.c, src/lpcre_f.c, src/lposix.c,
	test/pcre_sets.lua, test/posix_sets.lua: API change (error
	handling): see ChangeLog

2007-01-30  shmuz <shmuz>

	* NEWS, win32bin/readme.txt: release 2.0.2

2007-01-30  shmuz <shmuz>

	* doc/manual.html, doc/manual.txt: added description of defaults for
	compilation and execution flags

2007-01-29  shmuz <shmuz>

	* src/lposix.c: 2 bugs fixed: see ChangeLog

2007-01-29  shmuz <shmuz>

	* src/common.h: REX_VERSION updated to "2.0.2"

2007-01-29  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-01-27  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-01-27  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: gsub: bugfix (luaL_error -> lua_error)

2007-01-18  shmuz <shmuz>

	* ChangeLog, src/common.c, src/common.h, src/lpcre.c, src/lposix.c: 
	refactoring

2007-01-13  shmuz <shmuz>

	* ChangeLog, src/common.c, src/common.h, src/lpcre.c, src/lposix.c: 
	refactoring

2007-01-12  shmuz <shmuz>

	* : binaries corresonding to Lrexlib-2.0.1

2007-01-12  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: _VERSION updated to 2.0.1

2007-01-12  shmuz <shmuz>

	* src/common.c, src/common.h: A memory deallocation bug fixed.

2007-01-12  shmuz <shmuz>

	* ChangeLog, NEWS, win32bin/readme.txt: [no log message]

2007-01-10  shmuz <shmuz>

	* ChangeLog, doc/manual.html, doc/manual.txt: [no log message]

2007-01-10  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: refactoring

2007-01-04  shmuz <shmuz>

	* test/Spencer/runtest.lua, test/Spencer/test.lua,
	test/Spencer/tests: Must be of little interest to Lrexlib users

2007-01-04  rrt <rrt>

	* ChangeLog: Say what I did today.

2007-01-04  shmuz <shmuz>

	* NEWS: The date of release 2.0 put in.

2007-01-04  rrt <rrt>

	* Makefile: Simplify test target

2007-01-04  rrt <rrt>

	* README: Minor cosmetic fixes.

2007-01-04  rrt <rrt>

	* test/README: Clarify (oops, we can test more than one library!).

2007-01-04  rrt <rrt>

	* Makefile: Add top-level test target.  Make targets in this file .PHONY (needed for test, harmless good
	practice for the others).

2007-01-04  rrt <rrt>

	* test/README: Clarify syntax

2007-01-04  rrt <rrt>

	* Makefile: Add some documentation, simplify the all target, and add
	a clean target.

2007-01-04  rrt <rrt>

	* src/common.mak, src/rex_pcre.mak, src/rex_posix.mak: Factor out
	common bits of makefiles into common.mak.  Remove -llualib from LIB_LUA suggested non-default values, as this
	is gone in 5.1 in a default build.

2007-01-04  rrt <rrt>

	* src/.cvsignore: Add .cvsignore pattern for shared libraries

2007-01-04  shmuz <shmuz>

	* ChangeLog: [no log message]

2007-01-04  shmuz <shmuz>

	* src/common.c, src/common.h, src/lpcre.c, src/lpcre_f.c,
	src/lposix.c, test/Spencer/test.lua, test/common_sets.lua,
	test/luatest.lua, test/pat2pcre.lua, test/pcre_sets.lua,
	test/pcre_sets2.lua, test/posix_sets.lua, test/runtest.lua: 
	copyright notices changed to reference the file LICENSE

2007-01-04  shmuz <shmuz>

	* ChangeLog, test/README: [no log message]

2007-01-04  shmuz <shmuz>

	* test/runtest.lua: extended the command-line interface

2007-01-04  shmuz <shmuz>

	* src/lpcre.c: Lpcre_gsub: unnecessary (though harmless) assignment
	removed

2007-01-03  rrt <rrt>

	* Makefile: Bare-bones top-level makefile.

2007-01-02  shmuz <shmuz>

	* win32bin/lrexlib/LICENSE, win32bin/pcre/LICENCE,
	win32bin/readme.txt, win32bin/rxspencer/COPYRIGHT: Win-32 binaries:
	initial commit

2007-01-02  shmuz <shmuz>

	* doc/SciTE.properties, doc/lrexlib.css, src/common.c,
	src/common.h, src/lpcre.c, src/lpcre_f.c, src/lposix.c,
	src/rex_pcre.mak, src/rex_posix.mak, src/scite.properties,
	test/README, test/Spencer/runtest.lua, test/Spencer/test.lua,
	test/common_sets.lua, test/luatest.lua, test/pat2pcre.lua,
	test/pcre_sets.lua, test/pcre_sets2.lua, test/posix_sets.lua,
	test/runtest.lua, test/scite.properties: lots of changes: see
	December-2006 records in ChangeLog

2007-01-02  shmuz <shmuz>

	* test/pcre_test.lua, test/posix_test.lua, test/scite.properties: 
	replaced by other files

2007-01-02  shmuz <shmuz>

	* test/all_test.lua: renamed to runtest.lua

2007-01-02  shmuz <shmuz>

	* test/framework.lua: renamed to luatest.lua

2007-01-02  shmuz <shmuz>

	* doc/manual.html, doc/manual.txt: Lrexlib Reference Manual

2007-01-02  shmuz <shmuz>

	* doc/readme.rst, doc/rex_pcre.rst, doc/rex_posix.rst: files
	replaced by the Reference Manual

2007-01-02  shmuz <shmuz>

	* ChangeLog, LICENSE, NEWS, README, windows/dev-cpp/rex_pcre.mak,
	windows/dev-cpp/rex_spencer.mak: [no log message]

2007-01-02  shmuz <shmuz>

	* windows/dev-cpp/rex_pcre.dev, windows/dev-cpp/rex_pcre_nr.dev,
	windows/dev-cpp/rex_posix1.dev: *.dev files removed - makefiles will
	be used instead

2007-01-02  shmuz <shmuz>

	* windows/bcc32/config.mak, windows/bcc32/make_bcc.mak,
	windows/bcc32/makedef.lua, windows/bcc32/readme.txt: files removed
	since Borland C++ 5.5.1 does not support "long long"

2007-01-02  shmuz <shmuz>

	* lua/SciTE.properties, lua/generic_gsub.lua, lua/gsub_test.lua,
	lua/pat2pcre.lua, lua/rex.html, lua/rex.lua: files removed since
	everything is written in C now

2006-12-02  shmuz <shmuz>

	* lua/rex_.lua: unnecessary duplication of rex.lua

2006-12-02  shmuz <shmuz>

	* src/lpcre.c: TExecData renamed to TCallout.  LpcreSetExecData
	renamed to SetupCallout.

2006-12-02  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-29  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-29  shmuz <shmuz>

	* lua/generic_gsub.lua, lua/rex.lua, src/lpcre.c, src/lposix.c,
	test/Spencer/test.lua, test/all_test.lua, test/pcre_test.lua,
	test/posix_test.lua: Method renamed: oldmatch to tfind.  Method
	renamed: oldgmatch to tgfind.

2006-11-29  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: refactoring

2006-11-29  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-29  shmuz <shmuz>

	* test/framework.lua, test/pcre_test.lua, test/posix_test.lua: 
	refactoring

2006-11-29  shmuz <shmuz>

	* src/lpcre.c: Lpcre_dfa_exec: one Lmalloc call instead of two.

2006-11-29  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-27  shmuz <shmuz>

	* test/all_test.lua, test/framework.lua, test/pcre_test.lua,
	test/posix_test.lua: every test returns number of failures

2006-11-27  shmuz <shmuz>

	* src/common.c: plainfind_func: rewritten to not use memicmp

2006-11-27  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-26  shmuz <shmuz>

	* ChangeLog: correction

2006-11-26  shmuz <shmuz>

	* src/lpcre.c: 1. functions Check_arg_ renamed to Checkarg_ 2. added 2 arguments to dfa_exec method

2006-11-26  shmuz <shmuz>

	* src/lposix.c: functions Check_arg_ renamed to Checkarg_

2006-11-26  shmuz <shmuz>

	* test/pcre_test.lua: added tests for dfa_exec method

2006-11-26  shmuz <shmuz>

	* test/framework.lua: cosmetics

2006-11-26  shmuz <shmuz>

	* src/common.h: macro DIM removed

2006-11-26  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-25  shmuz <shmuz>

	* src/rex_posix.mak: version changed to 2.0

2006-11-25  shmuz <shmuz>

	* src/rex_pcre.mak: 1. added a new source file 2. version changed to 2.0

2006-11-25  shmuz <shmuz>

	* src/lpcre.c: function Lpcre_get_flags moved to lpcre_f.c

2006-11-25  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-25  shmuz <shmuz>

	* windows/bcc32/make_bcc.mak, windows/dev-cpp/rex_pcre.dev,
	windows/dev-cpp/rex_pcre_nr.dev: updated due to new file lpcre_f.c

2006-11-25  shmuz <shmuz>

	* src/lpcre_f.c: function Lpcre_get_flags moved to a separate file

2006-11-25  shmuz <shmuz>

	* test/all_test.lua: test all libraries in batch

2006-11-25  shmuz <shmuz>

	* test/pcre_test.lua, test/posix_test.lua: tests added; files made
	modules

2006-11-25  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: alpha -> beta

2006-11-25  shmuz <shmuz>

	* lua/generic_gsub.lua, test/framework.lua: refactoring

2006-11-25  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-23  shmuz <shmuz>

	* test/framework.lua: cosmetic fix

2006-11-23  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-23  shmuz <shmuz>

	* lua/rex.lua, lua/rex_.lua: gsub: 6th and 7th arguments swapped

2006-11-23  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-23  shmuz <shmuz>

	* test/framework.lua, test/pcre_test.lua, test/posix_test.lua: 
	refactoring

2006-11-22  shmuz <shmuz>

	* test/posix_test.lua: tests for POSIX rexlibs binding

2006-11-22  shmuz <shmuz>

	* test/pcre_test.lua: Corrections due to changes in API

2006-11-22  shmuz <shmuz>

	* src/lposix.c: Two bugs fixed

2006-11-22  shmuz <shmuz>

	* src/lpcre.c: 1. Check_arg_findmatch_func: 5th and 6th arguments swapped.  2. Check_arg_gmatch_func: 4th and 5th arguments swapped.

2006-11-22  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-21  shmuz <shmuz>

	* test/pcre_test.lua: test added: named subpatterns

2006-11-20  shmuz <shmuz>

	* ChangeLog: updated

2006-11-20  shmuz <shmuz>

	* test/test1.lua: replaced by other files

2006-11-20  shmuz <shmuz>

	* test/framework.lua.tortoise.removed,
	test/pcre_test.lua.tortoise.removed,
	test/scite.properties.tortoise.removed,
	test/test1.lua.tortoise.removed: these files shouldn't be here!

2006-11-20  shmuz <shmuz>

	* test/framework.lua.tortoise.removed,
	test/pcre_test.lua.tortoise.removed,
	test/scite.properties.tortoise.removed,
	test/test1.lua.tortoise.removed: removed by my fault

2006-11-20  shmuz <shmuz>

	* src/lpcre.c: reordering methods and functions

2006-11-20  shmuz <shmuz>

	* test/scite.properties: fighting Windows line endings

2006-11-20  shmuz <shmuz>

	* test/pcre_test.lua: tests for PCRE binding

2006-11-20  shmuz <shmuz>

	* test/framework.lua: framework for testing Lrexlib functions and
	methods

2006-11-20  shmuz <shmuz>

	* windows/dev-cpp/rex_pcre.dev, windows/dev-cpp/rex_pcre_nr.dev,
	windows/dev-cpp/rex_posix1.dev: set linker option "strip executable"

2006-11-20  shmuz <shmuz>

	* src/common.c, src/common.h, src/lpcre.c, src/lposix.c: 
	rex.plainfind (Lua-side) - function added

2006-11-20  shmuz <shmuz>

	* ChangeLog: updated

2006-11-19  shmuz <shmuz>

	* src/lpcre.c: callout: further improvement

2006-11-19  shmuz <shmuz>

	* src/lpcre.c: 1. Lpcre_config: new function (pcre.config from Lua side).  2. Callout handling improved.

2006-11-19  shmuz <shmuz>

	* src/lposix.c: typo fixed

2006-11-19  shmuz <shmuz>

	* ChangeLog: updated

2006-11-18  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c, windows/bcc32/config.mak,
	windows/bcc32/makedef.lua, windows/bcc32/readme.txt: line endings
	fixed

2006-11-18  shmuz <shmuz>

	* test/Spencer/test.lua: corrected names of functions and methods
	changed in Lrexlib

2006-11-18  shmuz <shmuz>

	* windows/bcc32/make_bcc.mak: deleted -DCOMPAT51, added -D$(CMDLINE)

2006-11-18  shmuz <shmuz>

	* test/test1.lua: main test suite for lrexlib functions and methods

2006-11-18  shmuz <shmuz>

	* lua/rex_.lua: same as rex.lua but uses reg:find instead of
	reg:oldmatch

2006-11-18  shmuz <shmuz>

	* lua/pat2pcre.lua: new module; was part of gsub_test.lua

2006-11-18  shmuz <shmuz>

	* src/common.c, src/common.h: common functions moved here

2006-11-18  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: old 'gmatch' method put back; renamed
	into 'oldgmatch'

2006-11-18  shmuz <shmuz>

	* lua/gsub_test.lua: PatternLua2Pcre: function moved to a separate
	file

2006-11-18  shmuz <shmuz>

	* lua/generic_gsub.lua: split_rep_string: function simplified

2006-11-18  shmuz <shmuz>

	* ChangeLog: updated

2006-11-15  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: 1. match method renamed into oldmatch 2. added lua-string-compatible find, match and gmatch

2006-11-15  shmuz <shmuz>

	* lua/rex.lua: 1. deleted everything except rex.gsub 2. rex.oldmatch is used instead of rex.match

2006-11-15  shmuz <shmuz>

	* lua/generic_gsub.lua: rex.oldmatch is used instead of rex.match

2006-11-15  shmuz <shmuz>

	* ChangeLog: updated

2006-11-13  shmuz <shmuz>

	* windows/dev-cpp/rex_pcre.dev, windows/dev-cpp/rex_pcre_nr.dev,
	windows/dev-cpp/rex_posix1.dev: corrected relative paths to source
	directory

2006-11-13  shmuz <shmuz>

	* src/scite.properties: pcre directory corrected: 6.4 to 6.7

2006-11-13  shmuz <shmuz>

	* src/lpcre.c, src/lposix.c: gmatch function and metamethod were
	added

2006-11-13  shmuz <shmuz>

	* lua/rex.lua: gmatch function and metamethod were deleted

2006-11-13  shmuz <shmuz>

	* ChangeLog: updated

2006-11-12  shmuz <shmuz>

	* lua/rex.lua: gmatch metamethod added

2006-11-12  shmuz <shmuz>

	* test/empty.txt: this file is not needed

2006-11-12  shmuz <shmuz>

	* doc/readme.html, doc/rex_pcre.html, doc/rex_posix.html: 
	auto-generated files shouldn't be under version control

2006-11-12  shmuz <shmuz>

	* ChangeLog: [no log message]

2006-11-09  shmuz <shmuz>

	* lua/bit.lua, lua/bit_test.lua: bitlib will be used

2006-11-08  rrt <rrt>

	* lua/bit_test.lua, lua/testbit.lua: Rename testbit.lua to
	bit_test.lua for consistency

2006-11-08  shmuz <shmuz>

	* lua/bit.lua, lua/generic_gsub.lua, lua/gsub_test.lua,
	lua/rex.lua, lua/testbit.lua: my first commit

2006-11-06  rrt <rrt>

	* lua/rex.lua: Explain bitwise OR requirement

2006-11-06  rrt <rrt>

	* lua/rex.html: Explain bit.lua

2006-11-06  rrt <rrt>

	* README: Improve bug reporting sentence

2006-11-05  rrt <rrt>

	* ChangeLog: Changes from Shmuel

2006-11-05  rrt <rrt>

	* lua/bit.lua: Add bit.lua for pure Lua bit.bor (Shmuel)

2006-11-05  rrt <rrt>

	* lua/rex.lua: Improve error message

2006-11-05  rrt <rrt>

	* lua/generic_gsub.lua, lua/gsub.lua, lua/gsub_test.lua,
	lua/rex.lua: Rename gsub.lua to generic_gsub.lua and make a module
	(Shmuel)

2006-11-05  rrt <rrt>

	* lua/new_gsub.lua: Removed by Shmuel

2006-11-05  rrt <rrt>

	* lua/rex.html, lua/rex.lua: Update documentation, with a little
	more tidying.  Cosmetic improvements to comments in rex.lua.

2006-11-05  rrt <rrt>

	* lua/rex.lua, src/lpcre.c, src/lposix.c: Remove C gmatch functions,
	replacing them with an iterator written in Lua.  Make function calls in rex.lua all have a space between the function
	name and the open parenthesis.

2006-11-04  rrt <rrt>

	* lua/find.lua: find now identical with rex.lua

2006-11-04  rrt <rrt>

	* ChangeLog, lua/find.lua, lua/gsub.lua, lua/gsub_test.lua,
	lua/new_gsub.lua, lua/rex.lua: Bug-fixes from Shmuel.

2006-11-03  rrt <rrt>

	* lua/rex.lua: Tidy up slightly as per comments from Shmuel.

2006-11-03  rrt <rrt>

	* lua/rex.html: Tidy up the HTML manually a bit (thanks Shmuel for
	the notes).

2006-11-03  rrt <rrt>

	* lua/find.lua, lua/gsub.lua, lua/gsub_test.lua, lua/new_gsub.lua: 
	Re-add Shmuel's Lua files for integration.

2006-11-03  rrt <rrt>

	* windows/dev-cpp/rex_pcre.dev, windows/dev-cpp/rex_pcre_nr.dev,
	windows/dev-cpp/rex_posix1.dev: Re-add 5.1 project files, no longer
	in lua-5.1 subdir.

2006-11-03  rrt <rrt>

	* test/Spencer/runtest.lua, test/Spencer/test.lua,
	test/Spencer/tests: Add Spencer tests

2006-11-03  rrt <rrt>

	* windows/dev-cpp/lua-5.1/rex_pcre.dev,
	windows/dev-cpp/lua-5.1/rex_pcre_nr.dev,
	windows/dev-cpp/lua-5.1/rex_posix1.dev: Remove lua-5.1 directory; we
	only support 5.1 now

2006-11-03  rrt <rrt>

	* windows/dev-cpp/lua-5.0/rex_pcre.dev,
	windows/dev-cpp/lua-5.0/rex_pcre_nr.dev,
	windows/dev-cpp/lua-5.0/rex_posix1.dev: Remove Lua 5.0 support

2006-11-03  rrt <rrt>

	* ChangeLog, README, doc/SciTE.properties, doc/readme.html,
	doc/readme.rst, src/common.c, src/common.h, src/lpcre.c,
	src/lposix.c, src/rex_pcre.mak, src/rex_posix.mak,
	src/scite.properties, windows/bcc32/config.mak,
	windows/bcc32/make_bcc.mak, windows/bcc32/readme.txt: Merge changes
	from Shmuel

2006-11-03  niklas <niklas>

	* README: 1.20 will support only 5.1, not 5.x.  Mention the rex Lua module.

2006-11-03  rrt <rrt>

	* lua/5.1/SciTE.properties, lua/5.1/gsub.lua,
	lua/5.1/gsub_test.lua, lua/5.1/new_gsub.lua, lua/SciTE.properties,
	lua/rex.html, lua/rex.lua: We're only supporting 5.1 now, so remove
	the 5.1 directory.  Replace extant Lua code with version from stdlib; add generated HTML
	docs (checked in because the ldoc script isn't (yet?) in lrexlib).

2006-11-03  rrt <rrt>

	* lua/5.0/SciTE.properties, lua/5.0/gsub.lua,
	lua/5.0/gsub_test.lua, lua/5.0/new_gsub.lua: Remove Lua 5.0 support

2006-09-24  rrt <rrt>

	* README: Remove example code, which is now available in the
	distribution in much more functional form.  Bump version to 1.20, and update copyright dates.  Change "5.0" to "5.x".

2006-04-04  rrt <rrt>

	* src/common.c, src/common.h, src/lpcre.c, src/lposix.c: Add
	copyright to common.h.  Change #includes of Lua headers to "" rather than <> to cope better
	with the (common?) case of being used in a Lua source tree.

2006-04-04  rrt <rrt>

	* src/common.c, src/lpcre.c, src/lposix.c: Tidy up copyright lines
	(indeed, use the word "copyright"!).  Improve a comment in common.c

2006-04-01  rrt <rrt>

	* ChangeLog: Note today's commits.

2006-04-01  rrt <rrt>

	* ChangeLog: Tiny bit more formatting!

2006-04-01  rrt <rrt>

	* ChangeLog: More reformatting.

2006-04-01  rrt <rrt>

	* ChangeLog: Reformatted using Emacs Change Log mode.

2006-04-01  rrt <rrt>

	* src/lpcre.c: Remove unnecessary limit variable from Lpcre_gmatch;
	remove trailing whitespace.

2006-04-01  rrt <rrt>

	* src/common.c, src/lposix.c: Remove trailing whitespace

2006-03-20  rrt <rrt>

	* lua/5.0/SciTE.properties, lua/5.0/gsub.lua,
	lua/5.0/gsub_test.lua, lua/5.0/new_gsub.lua,
	lua/5.1/SciTE.properties, lua/5.1/gsub.lua, lua/5.1/gsub_test.lua,
	lua/5.1/new_gsub.lua, lua/gsub-5.0.lua, lua/gsub-5.1.lua: New
	version from Shmuel

2006-01-21  rrt <rrt>

	* README, doc/lrexlib.css, doc/readme.rst, doc/rex_pcre.rst,
	doc/rex_posix.rst, lua/gsub-5.0.lua, lua/gsub-5.1.lua,
	src/common.c, src/common.h, src/lpcre.c, src/lposix.c,
	src/scite.properties: Change non-Windows text files to Unix line
	endings

2006-01-21  rrt <rrt>

	* Initial revision