File: ChangeLog

package info (click to toggle)
howm 1.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,608 kB
  • ctags: 1,388
  • sloc: lisp: 7,757; sh: 3,444; ruby: 1,067; makefile: 112
file content (1893 lines) | stat: -rw-r--r-- 59,192 bytes parent folder | download
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
2009-12-31  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.8

2009-08-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-excluded-dirs): add ".git".

2009-07-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-mode.el (howm-keyword-search-subr): fix.
	howm-list-title was ignored for come-from links.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/762

2009-06-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-reminder-font-lock-keywords): 
	highlight late deadlines.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/738

2009-06-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-backend.el (howm-real-grep-multi): fix.
	howm-list-recent caused error "Can't exec program" or
	"Spawning child process: exec format error" if howm-view-use-grep
	is set and there are too many recently-changed files.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/733
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?Windows

	* howm-vars.el (howm-command-length-limit): new option

2009-05-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el
	(howm-filter-items-by-contents):
	splitted from howm-view-remove-by-contents for functional style.
	it will be used in
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?HidePrivateReminder
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/731
	(howm-entitle-items-style1): use howm-view-search-folder-fi.
	(howm-item-list-filter): ditto.

2009-05-22  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* riffle.el (riffle-line-number): widen before counting.

2009-05-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version
	update automake

	* howm-vars.el
	(howm-excluded-dirs): exclude _darcs/ etc. by default.
	(howm-view-grep-default-option): ditto.

2009-03-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2009-03-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (howm-real-grep-multi, howm-real-grep-single): 
	remove final slash for compatibility with yagrep.
	http://www.kt.rim.or.jp/~kbk/yagrep/index.html
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/685-686n

	* howm-common.el (howm-expand-file-names): ditto.

2009-02-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm.el: update copyright years

	* howm-reminder.el (howm-extend-deadlines): new command.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/671

	* howm-menu.el (howm-menu-refresh-background): fix.
	The main function was erased wrongly on 2006-03-11.

2008-12-31  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.7

	* howm-misc.el (howm-basic-save-buffer): fix.
	inhibit "Wrote ..." message.

2008-11-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.7rc4

	* howm-view.el (howm-view-summary-item): fix.
	use full path for equivalence check
	thx > dareka
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReportPaste

2008-10-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.7rc3

	* riffle.el (riffle-summary-update): 
	cancel fix on 2008-09-23, and remove corresponding feature itself.
	This special feature was broken from howm-1.2 to 1.3.7rc2,
	and I received no bug report.

2008-09-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* riffle.el (riffle-summary-update): fix.
	behavior was wrong when howm-view-split-horizontally is
	neither t nor nil.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/591

2008-09-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-configuration-for-major-mode): 
	modify sample for "defun*"

2008-08-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.7rc2

	* howm-menu.el (howm-recent-menu): 
	select only one item from each file in random selection.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/563-566n

	* howm-misc.el (howm-bug-report): use howm-cl-mapcan instead of mapcan

	* howm-view.el (howm-entitle-items-style2): ditto.

2008-08-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.7rc1

2008-08-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-normalizer):
	use original names instead of aliases

2008-08-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-reminder-menu): fix.
	first argument was not used, and some items were dropped
	in howm-menu-categorized-reminder.
	thx > taka-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReportPaste

2008-07-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2008-07-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-keyword-search-subr):
	howm-view-item-list was remained wrongly

	* howm-reminder.el (howm-list-todo-sub): ditto.

	* configure.in: test version

	* howm-view.el (howm-entitle-items-style1): fix.
	titleless items were not shown

	* howm-view.el (howm-entitle-items-style2): fix error.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/552

	* howm-mode.el
	(howm-call-view-summary): added for manipulation of titles
	(howm-list-title-clear-previous): ditto.

	* howm-backend.el (howm-item-dup): ditto.

2008-07-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-mode.el
	(howm-all-items): splitted and renamed from howm-list-all
	(howm-list-around): rewritten in functional style

2008-07-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-filter-items):
	renamed from howm-view-filter-internal
	(howm-filter-items-uniq, howm-filter-items-by-name) 
	(howm-filter-items-by-summary, howm-filter-items-by-name/summary) 
	(howm-filter-items-by-date, howm-filter-items-by-reminder) 
	(howm-filter-items-by-mtime): ditto.
	(howm-entitle-items):
	renamed from howm-view-list-title-internal
	(howm-entitle-items-style1, howm-entitle-items-style2): ditto.
	(howm-entitle-items-style1): return value is changed
	(howm-sort-items):
	renamed from howm-view-sort-internal
	(howm-sort-items-by-random, howm-sort-items-by-name) 
	(howm-sort-items-by-numerical-name, howm-sort-items-by-date) 
	(howm-sort-items-by-reverse-date, howm-sort-items-by-summary) 
	(howm-sort-items-by-reminder, howm-sort-items-by-mtime) 
	(howm-sort-items-by-reverse): ditto.
	(howm-view-lift-internal): avoid simple variable name for safety

	* howm-backend.el (howm-view-directory-items): 
	use howm-folder-items insteadly.

2008-07-14  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2008-07-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el
	(howm-search): add argument
	(howm-list-related): simplified

	* howm-vars.el (howm-view-use-grep): fix docstring

	* howm-mode.el (howm-call-view-search): removed

2008-07-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-view-in-background): don't use it in principle

	* howm-reminder.el (howm-reminder-add-font-lock): splitted

	* howm-misc.el (howm-mode-add-font-lock): ditto.

	* howm-view.el (howm-view-summary,howm-view-summary-rebuild):
	add optional argument for font-lock

	* howm-mode.el (howm-search,howm-keyword-search-subr):
	don't use *howm-view-font-lock-keywords* outside howm-view.el

	* action-lock.el: untabify

	* howm-view.el (howm-view-search-folder): splitted

	* howm-mode.el
	(howm-list-normalize, howm-normalizer-pair, howm-normalize-oldp): 
	warn if howm-list-normalizer is set.
	convert howm-list-normalizer to howm-normalizer if possible.
	(howm-normalize-show): replace howm-list-normalize

	* howm-mode.el (howm-list-all, howm-list-recent, howm-search):
	use howm-normalize-show

	* howm-backend.el (howm-open-directory-independently): ditto.

2008-07-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el
	(howm-normalizer): new option
	(howm-list-normalizer): default is changed to nil

	* howm-mode.el
	(howm-list-normalize): switch new or old codes
	(howm-normalize): rewrite howm-list-normalize in functional style
	(howm-list-normalize-old): renamed from howm-list-normalize. use prog1.
	(howm-list-title-put-previous): add optional argument

	* howm-view.el
	(howm-view-list-title-internal): split howm-view-list-title function
	(howm-view-list-title1-internal): ditto.
	(howm-view-list-title2-internal): ditto.

	* howm-mode.el
	(howm-default-key-table): update docstring
	(howm-migemo-client): add docstring
	(howm-mode): remove useless backquote

	* howm.el: update copyright years

2008-05-31  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-vars.el (howm-action-lock-forward-fuzziness): new option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/519
	* howm-reminder.el (howm-action-lock-forward-modify-current-line):
	ditto.

2008-05-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-filter-general): fix. predicate was reversed.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/514

2008-05-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* riffle.el
	(riffle-keep-window): new option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/507
	(riffle-summary-subr): check riffle-keep-window.
	(riffle-post-command): ditto.
	(riffle-summary-to-contents): ditto.
	(riffle-pop-to-buffer): ditto.
	(riffle-refresh-window-configuration): ditto.

	* howm-date.el (howm-date-forward-ymd): don't call riffle directly.

	* riffle.el (riffle-summary-update): use catch & throw.

2008-05-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-filter-general): fix. revived for howmoney.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/503

2008-05-14  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-backend.el
	(howm-real-grep-single): use labels instead of flet.
	(howm-real-grep-multi): ditto.

	* howm-misc.el (howm-basic-save-buffer): ditto.

	* howm-mode.el (howm-expand-aliases-recursively): ditto.

	* howm-common.el (howm-with-exit): new macro for the below fix.

	* howm-reminder.el
	(howm-list-schedule): fix.
	cancel postprocess if no-match.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/494
	(howm-list-todo-sub): ditto.
	(howm-list-reminder-final-setup): fix.
	action-lock-mode was toggled unintentionally.

	* howm-common.el
	(howm-list-exclude): removed (unused)
	(howm-item-exclude-p): ditto.
	(howm-view-item-exclude-p): ditto.

2008-05-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el
	(howm-view-summary-mode): fix.
	global value of font-lock-keywords-only was set wrongly
	in CVS head emacs after 2008-02-24.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/484-487n
	(howm-view-contents-mode): ditto.

	* howm-menu.el (howm-menu-set-face): unify the style (no effect)

2008-04-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-backend.el (howm-real-grep-multi): 
	split howm-view-grep-option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/458

2008-04-14  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-title-skip-regexp): 
	use howm-view-title-header.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/454

2008-04-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-dired): call howm-view-dired-goto by default.

	* howm-vars.el (howm-view-dired-keep-cursor): removed.

2008-04-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-test): add docstring.
	thx > dareka
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2007-11-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2007-11-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-decode-time): 
	fix.
	today's schedule didn't appear on menu on the last day of DST.
	thx > Mielke-san (peter.mielke at gmail.com)
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2007/000034.html

2007-07-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-sort/filter-doit): fix.
	return list of items for backward compatibility.
	thx > taku-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?HidePrivateReminder

2007-05-28  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-summary-next-section-sub): 
	stop at the first hit line of each file.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/360

2007-05-18  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm.el: manage circular dependencies

	* elisp-comp: cancel the fix on 2007-05-05

	* honest-report.el
	(honest-report-version-assoc): be independent of howm-*
	(honest-report-emacs-build-time): ditto.
	howm-emacs-build-time is moved and renamed.

2007-05-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* mkinstalldirs: update to automake-1.10

	* missing: ditto.

	* install-sh: ditto.

	* elisp-comp: ditto. & fix (keep the order of arguments)

	* config.guess: update to autotools-dev_20060702

	* config.sub: ditto.

	* acinclude.m4: fix for aclocal 1.10

	* Makefile.am: ditto.

2007-05-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el
	(howm-menu-reminder-format): new option.
	(howm-menu-list-format): columnar formatting
	thx > Mielke-san (peter.mielke at gmail.com)
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2007/000032.html

2007-04-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2007-04-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-summary-mode): fix.
	summary buffer was not highlighted in howm-occur.

	* howm-backend.el (howm-occur-force-fake-grep): new option.

	* howm-view.el (howm-view-search-folder): 
	check FIXED-P for highlighting

	* configure.in: test version

2007-04-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-read-aliases): fix.
	RET on "BBB" in "<<< aaa <<< BBB" didn't search "aaa"
	if howm-keyword-case-fold-search is non-nil.

2007-04-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el
	(howm-view-filter-by-mtime): fix. range was ignored.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/340
	(howm-view-filter-by-time-range): ditto.

2007-04-03  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-truncate-string): fix. correct docstring

2007-04-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-sort-by-random-internal): fix.
	wrong variable name

	* configure.in: test version (canceled)

	* howm-view.el (howm-view-defun-sort-by): use macro to define sort-by-X

2007-04-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: private test version

	* howm-reminder.el (howm-schedule-sort-items): wrongly interactive

	* howm-view.el
	(howm-view-mtime): remove howm-view-xtime
	(howm-view-filter-by-mtime): ditto.
	(howm-view-sort-by-mtime): ditto.
	(howm-view-filter-general): remove with-index
	(howm-view-filter-internal): ditto.
	(howm-view-sort-by-name-match): renamed to howm-view-lift-by-*
	(howm-view-sort-by-summary-match): ditto.
	(howm-view-sort-by-summary-match-string): ditto.
	(howm-view-filter-general): removed for more functional style
	(howm-view-sort-general): ditto.
	(howm-view-sort-by-general-match): ditto.
	(howm-view-filter-by-date-internal): fix. limit date was wrong by one
	(howm-view-filter-by-reminder-internal): ditto.
	(howm-view-filter-by-mtime-internal): ditto.

	* howm-reminder.el (howm-list-reminder-final-setup): fix.
	schedule/todo list was not fontified.
	(howm-list-schedule): defer setup of summary buffer for efficiency.
	(howm-list-todo-sub): ditto.

	* howm-view.el
	(howm-view-filter-by-date-internal): fix.
	03-16 was listed when limit is "to 03-15".
	(howm-view-filter-by-reminder-internal): ditto.
	(howm-view-filter-by-xtime): ditto.

	* configure.in: private test version

2007-03-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-view-contents-limit): fix. not used.
	also change its default from 10000 to nil for backward compatibility.

	* howm-mode.el
	(howm-list-toggle-title): fix.
	internal calls to howm-list-title shouldn't perform toggle.
	(howm-keyword-search-subr):
	defer setup of summary buffer for efficiency.

	* howm-cl.el (howm-cl-remove-duplicates*): fix.
	"<<< foo" didn't appear at the top of the summary buffer
	when howm-list-title is T.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/328

	* howm-misc.el (howm-buffer-name-format): new option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/333

2007-03-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2007-03-22  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-contents-item): 
	don't insert separator "====>>> xxx.howm" in contents buffer
	if just one item is displayed.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/314

2007-02-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-vars.el (howm-check-word-break): new option.
	thx > Mielke-san (peter.mielke at gmail.com)
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2007/000030.html

	* howm-view.el (howm-view-summary-mode): 
	highlight today and tomorrow.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/275

	* howm-menu.el (howm-menu-font-lock-rules): ditto.

	* howm-reminder.el (howm-highlight-date-regexp-format):
	change default.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/275

	* howm-vars.el (howm-funcall-if-defined): fix docstring

	* howm.el: update copyright years

2007-02-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* honest-report.el (honest-report-version-assoc): 
	report environment variables "LANG" etc.

2006-12-31  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-reminder-summarizer): 
	show "late days" in addition to "day of week".
	thx > Mielke-san (peter.mielke at gmail.com)
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2006/000028.html

2006-12-18  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-keyword-search-open-menu): 
	show warning when two or more %menu% are found.

	* howm-view.el (howm-view-sort-by-general-match): 
	return single/multi/nil instead of conventional t/nil.

2006-12-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm.el: security fix.
	put risky-local-variable property
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/207

	* configure.in: version 1.3.4 is released from another branch

2006-12-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: private test version

	* howm-vars.el
	(howm-define-risky-command): put risky-local-variable property

	* riffle.el: ditto.

	* illusion.el: ditto.

	* gfunc.el: ditto.

	* action-lock.el: ditto.

	* howm-cl.el (howm-cl-gensym): added.

	* howm-misc.el (howm-required-features): add honest-report

	* riffle.el (riffle-set-mode-maybe): removed (not used anywhere)

	* howm-mode.el
	(howm-keyword-aliases): fix. check howm-keyword-case-fold-search.
	(howm-template-string): fix. accept (lambda ...) as howm-template.

2006-11-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-common.el
	(howm-log-buffer-name-format): added
	(howm-write-log): rename buffer according to howm-log-buffer-name-format
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/193-194n
	(howm-history): raise error if history file doesn't exist.

	* howm-backend.el
	(howm-keyword-buffer): 
	force howm-keyword-buffer-name-format even for the normal case.
	(howm-keyword-buffer-name): removed
	(howm-get-keyword-buffer): removed

	* howm-common.el (howm-get-buffer-for-file): added

	* howm-misc.el (howm-basic-save-buffer): 
	doesn't show "Wrote..." message any more.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/193-194n

2006-10-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-message-nolog): message without logging

	* howm-view.el (riffle-post-update:howm): ditto.

2006-10-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-backend.el
	(howm-get-keyword-buffer): fix: argument is not optional any more.
	(howm-keyword-buffer-name): new option.
	(howm-keyword-buffer): buffer-name is now customizable.

2006-10-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* cheat-font-lock.el (cheat-font-lock-20040624-format-p): fix.
	font-lock-compile-keywords may add a help-echo
	in CVS-head emacs, and its result can be longer than expected.
	see 2005-10-21 in lisp/ChangeLog.
	http://lists.gnu.org/archive/html/emacs-commit/2005-10/msg00635.html
	http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/font-lock.el.diff?tr1=1.276&tr2=1.277&r1=text&r2=text

2006-10-03  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-backend.el (howm-page-open:file): fix. need widen.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/160-161n

2006-09-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-todo-priority-schedule-bottom): make it deeper
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/149

	* howm-vars.el (howm-huge++): new parameter

2006-09-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-version.el.in: remove howm-{en,ja}-dir

	* howm-lang-ja.el (howm-day-of-week-ja): Use a list instead of a string.

	* howm-lang-en.el (howm-day-of-week-en): ditto.
	Use "Sun" instead of "S".

	* howm-menu.el (howm-day-of-week-string): 
	howm-day-of-week-{en,ja} can be a list.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/147

2006-07-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-menu.el (howm-menu-list-regexp): fix.
	RET at "7" in "> 2006-07-26-015606 |" in menu buffer caused error.
	thx > na-san

2006-06-28  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-bayesian-set): new command.

2006-06-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-expand-aliases-recursively): 
	CL function "copy-list" is replaced with built-in "copy-sequence".

	* howm-menu.el (howm-menu-shortcut-sort): ditto.

2006-06-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-reminder.el (howm-list-active-todo): new command.

	* howm-view.el (howm-view-sort-by-summary-match-string): new feature.

	* howm-misc.el (howm-mode-set-buffer-name): new tool.
	thx > Mielke-san (peter at exegenix.com)
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2006/000020.html
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2006/000022.html
	thx > anonymous
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?ExternalTool

	* howm-vars.el (howm-menu-reminder-separators): fix.
	"Between schedule and todo" corresponds to nil.

	* howm-reminder.el (howm-todo-separators): new option.

	* howm-backend.el
	(howm-page-type): page can be nil.
	(howm-make-page:nil): ditto.
	(howm-item-page): ditto.

	* howm-reminder.el (howm-todo-insert-separators): 
	use nil-page item instead of string.

	* howm-menu.el (howm-menu-format-todo): ditto.

2006-06-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* COPYING: fix.
	obsolete address of FSF is corrected.
	thx > Fujimura Yuki san <ykfj@users.sourceforge.jp>

2006-06-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.3

2006-05-20  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.3rc1

2006-05-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-05-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-with-coding-system): 
	accept a pair (for-read . for-write).
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/96

	* howm-vars.el (howm-process-coding-system): ditto.

2006-05-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-common.el (howm-with-coding-system): fix.
	howm-process-coding-system should be checked at runtime.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/94-95n

2006-05-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-05-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-remember-get-title): fix.
	remove newline from title string.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/92

2006-04-29  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-remember-first-line-to-title): new option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/72-75n

	* howm-common.el (howm-call-process): fix.
	set coding-system for temporary buffer.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/63-83n

2006-04-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-remember-submit): fix.
	"%file" in howm-template now works even for howm-remember.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/61

2006-03-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-remember): new command.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/24-25n

2006-03-22  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-view.el (howm-view-list-title-type): 
	experimental code to show title before summary of each item.
	thx > Highfly san
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2006/000025.html

2006-03-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* illusion.el: require easy-mmode explicitly

	* honest-report.el (honest-report-window-list): 
	support emacs20 (and meadow-1.15).

2006-03-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-03-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-migemo-client-option): new option.
	thx > http://pc11.2ch.net/test/read.cgi/unix/1141892764/9

2006-02-04  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-02-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm.el: fix.
	howmz needs both howm-menu-command-table-{en,ja}.

	* configure.in: test version

	* howm.el: fix.
	require howm-lang-* before it is really needed.
	this may be necessary for howmz.
	thx > (TxT) san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?LinuxZaurus
	http://noir.s7.xrea.com/archives/000136.html

2006-01-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-menu.el (howm-menu-categorized-reminder): 
	howm-menu-categorized-todo is replaced with -reminder.
	fix error when howm-menu-reminder-separators is not null.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/919

2006-01-19  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-01-18  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (howm-page-viewer:file): 
	list files in directory in contents buffer.

2006-01-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-menu.el (howm-menu-categorized-todo): 
	misc. can be omitted.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/909

2006-01-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-menu.el (howm-menu-categorized-todo): new feature (experimental).
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/885
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/890

	* howm-cl.el (howm-cl-find-if): added

	* howm-backend.el (howm-folder-grep-internal:pages): cleaned.

	* howm-menu.el (howm-menu-general): cleaned.
	you can make your own list in menu buffer more easily.
	see howm-menu-schedule, howm-menu-todo, howm-menu-recent, and
	howm-menu-search for example.

2006-01-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-buffer-p): fix.
	.howm-keys and its alternatives were overlooked.
	thx > http://d.hatena.ne.jp/dasm/20060110

2006-01-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2006-01-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm.el: update copyright years

	* cheat-font-lock.el (cheat-font-lock-20040624-format-p): fix.
	avoid "Font-lock trying to use keywords before setting them up" error
	during 'make' for emacs-22.0.50.1 (CVS version).
	thx > http://tty0.exblog.jp/2944244
	thx > http://d.hatena.ne.jp/yoshk/20060102
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/867
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/873-874n

2005-12-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-custom-reminder-get-types): fix.
	treat unknown marks correctly.

	* howm-reminder.el (howm-modify-reminder-types): 
	example is commented out.

2005-12-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version
	(packagedir): fix lispdir for xemacs with packagedir

2005-12-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: endir and jadir are now obsolete.
	--with-rel-datadir is canceled.
	thx > HONJOH Eiji san. irodori@irodori.sakura.ne.jp
	thx > ZENITANI Seiji san. zenitani@mac.com

	* howm-menu.el (howm-menu-initialize-skel): ditto.
	read howm-menu-*.el instead of {en,ja}/0000-00-00-000000.howm

	* howm-mkmenu.el: ditto.
	new script to make howm-menu-*.el from {en,ja}/0000-00-00-000000.howm

	* Makefile.am: ditto.
	add howm-menu-*.el. delete en/ and ja/.

	* howm-lang-en.el: separate language-dependent variables

	* howm-lang-ja.el: ditto.

	* howm-menu.el (howm-lang-ref): ditto.

	* howm-common.el (howm-get-symbol): ditto.

	* Makefile.am (howm_LISP): ditto.

2005-12-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: new option --with-howmdir
	default lispdir is now .../site-lisp.
	thx > HONJOH Eiji san. irodori@irodori.sakura.ne.jp

	* Makefile.am (howm_LISP): ditto.

	* acinclude.m4 (ac_output): ditto.

	* bcomp.el.in (bcomp-files): ditto.

2005-11-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* configure.in: new option --with-rel-datadir
	previous --with-data-into-lispdir is canceled.
	thx > ZENITANI Seiji san. zenitani@mac.com
	thx > HONJOH Eiji san. irodori@irodori.sakura.ne.jp

2005-11-29  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* configure.in: new option --with-data-into-lispdir
	thx > HONJOH Eiji san. irodori@irodori.sakura.ne.jp

2005-11-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-mode-off-hook): fix.
	remove duplicated defcustom.
	thx > TAKEMURA Masayuki san. ICG04984@nifty.com

2005-11-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu-skel): 
	- use symbol-value instead of eval.
	- howm-en-dir and howm-ja-dir can be relative paths from the directory
	of howm.elc or howm.el. (for Carbon emacs package)
	thx > ZENITANI Seiji san. zenitani@mac.com
	thx > HONJOH Eiji san. irodori@irodori.sakura.ne.jp
	thx > ARAI Ryotaro san. misty@...
	http://lists.sourceforge.jp/mailman/archives/macemacsjp-users/2005-November/000756.html
	http://lists.sourceforge.jp/mailman/archives/macemacsjp-users/2005-November/000760.html

2005-11-22  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-menu-todo-priority): change default.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/75-77n
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/842-846n

2005-11-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-open-named-file): new command.
	thx > Eduardo Ochs san
	http://lists.sourceforge.jp/mailman/archives/howm-eng/2005/000010.html

2005-11-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-reminder.el (howm-action-lock-forward-open): 
	don't depend on magic-return.

	* howm-date.el (howm-action-lock-date-search): 
	now it works even on menu buffer.
	thx > Kaneko Kensuke san
	http://d.hatena.ne.jp/a666666/20051110/1131621183

	* howm-reminder.el (howm-action-lock-forward): 
	keep my text property for jump from menu.

	* howm-menu.el (howm-menu-list-action): 
	keyword is now optional.

	* howm-date.el (howm-action-lock-date-prompt): 
	misleading message is corrected.
	thx > Kaneko Kensuke san
	http://d.hatena.ne.jp/a666666/20051110/1131621183

2005-11-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-menu.el (howm-menu-list-action): fix.
	history list was broken.

2005-11-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu-list-action): 
	get text property not from buffer but from argument.

	* action-lock.el (action-lock-general): 
	keep text properties.

	* howm-common.el (howm-history):
	disable expansion of %schedule etc.

	* configure.in: test version

2005-11-04  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-replace-region): 
	`format' in xemacs doesn't keep text properties.

	* howm-menu.el (howm-menu-list-format): 
	store item to text property so that we can open it directly
	instead of searching text when RET is hit on ">" in menu buffer.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/823

	* action-lock.el (action-lock-general): add docstring

	* configure.in: version 1.3.2

	* howm-mode.el (howm-keyword-search-subr): 
	cancel the below change. this problem should be fixed
	more fundamentally.

	* howm-mode.el (howm-keyword-search-subr): 
	search lines whose entire texts exactly match to the geven keyword
	when open-unique-p is non-nil.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/823

2005-10-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.2rc4

2005-10-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-view-dired-keep-cursor): new option.
	thx > 797 http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2005-10-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.2rc3
	something was wrong in 'cvs commit' of rc2.

2005-10-20  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.2rc2

	* howm-view.el
	(howm-view-dired): fix.
	require dired-vir for xemacs, and remove duplicates.
	thx > 797 http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2005-10-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.2rc1

2005-10-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-read-event): fix.
	error when RET is hit on date format [2005-10-15] in menu buffer
	in xemacs.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/797-801n

2005-10-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-common.el (howm-view-in-background): fix.
	This macro is moved from howm-view.el because it is used across files.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/789-791n

2005-09-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-09-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (howm-occur): new command

2005-09-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-view-contents-limit): default is changed to 10000

2005-09-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* action-lock.el
	(action-lock-open-regexp): include / at the end
	(action-lock-browse-regexp): ditto

2005-09-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* honest-report.el (honest-report-screenshot): fix.
	window-end (without update) can be negative when completion window
	is displayed temporally.

2005-09-05  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-call-process-here): set coding system
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/784

	* howm-vars.el (howm-process-coding-system): new option

2005-09-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (action-lock-find-file): expand-file-name
	thx > hattori-san
	http://www.tom.sfc.keio.ac.jp/~hattori/blog/setting/2005/08/howm.html

2005-08-29  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-vars.el (howm-list-title): add howm-action-lock-date-search
	so that title is shown for `howm-search-today' (C-c , , .) by default.
	thx > nobu-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

	* howm-date.el (howm-action-lock-date-search): add `howm-set-command'.

2005-08-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el: add (require 'riffle)
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/782

2005-08-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.1

2005-08-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.1rc1

	* howm-vars.el (howm-get-locale): fix. never return nil
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/780-781n

2005-08-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-summary-omit-same-name): new option
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/779

2005-08-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-title-skip-regexp): new option

2005-08-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-bug-shot): new command for bug report

2005-08-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-bug-report):
	call bugshot-version-assoc internally

	* honest-report.el: new tool for better bug report

2005-08-03  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* riffle.el (riffle-define-derived-mode):
	defined to avoid slow down in xemacs.

2005-08-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* gfunc.el (gfunc-call): recursion is rewritten to loop.
	recursion seems remarkably slow in xemacs.

	* configure.in: version 1.3.0

2005-07-28  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.0rc5

2005-07-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el
	(howm-view-summary-item):
	don't show same name repeatedly.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/754
	(howm-view-summary-stripe): canceled.
	the above should be better.
	(howm-view-contents-mode): fix.
	howm-view-summary-font-lock-keywords must not work in contents buffer.
	(howm-view-summary-font-lock-keywords): add default.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/754

	* howm-reminder.el (howm-with-schedule-summary-format): 
	use this macro and never use howm-view-summary-format directly.

2005-07-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-summary-stripe): new option.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/754

	* configure.in: version 1.3.0rc4 again. mistake in packaging

2005-07-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.0rc4

	* howm-vars.el (howm-excluded-file-regexp-dir-char): fix.
	Both "\" and "/" indicate directory in win.

2005-07-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-message-time):
	Don't hide "No match" message even when howm-message-time is set.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/751

	* riffle.el (riffle-summary): cleaned.
	global varibale *howm-view-summary-nop* is replaced with optional
	argument.
	"No match" message is moved to howm-view-summary.

2005-07-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-call-process): 
	howm-call-process-last-command keeps all arguments
	so that we can repeat the last call-process
	by (apply #'howm-call-process howm-call-process-last-command).

2005-07-14  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-content-from-region): fix. Labels are corrected.

2005-07-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.0rc3

2005-07-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu-dynamic-setup): fix.
	canceled change in this function on 2005-05-10,
	so that underlines appear on come-from keywords
	in reminder lines in menu.

2005-06-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.0rc2

2005-06-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-menu-lang):
	check locale to select default language.

2005-06-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.3.0rc1

2005-06-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* riffle.el (riffle-pop-to-buffer): fix.
	howm-view-summary-window-size didn't work when it is greater than
	half size.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/724

2005-06-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-mode.el (howm-template-receive-buffer): new option.
	By default, previous buffer is also passed to howm-template
	when it is a function.
	thx > http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?Comment

2005-06-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-06-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-cl.el: cl functions are collected to single file
	and defalias-ed to inhibit warning during byte-compilation
	in emacs-22.0.50.1 (CVS version).

	* howm-misc.el (howm-auto-save-buffers-p): 
	Inhibit warning 'reference to free variable'
	for auto-save-buffers-regexp during byte-compilation
	in emacs-22.0.50.1 (CVS version).

2005-06-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-06-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el
	(howm-action-lock-forward-kill-buffer): new option.

	* howm-reminder.el (howm-action-lock-forward-invoke): 
	call undo-boundary before modification.
	howm-action-lock-forward-save-buffer shouldn't work when
	the corresponding buffer is already modified before this action.

2005-06-03  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-common.el (howm-time-difference-second): don't omit milliseconds.
	I can't remember the reason of omission
	and I cancel this change on 2005-03-09.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/709

	* action-lock.el (action-lock-magic-return): fix.
	snatched RET from pobox-newline in pobox-mode.
	Indeed, old code snatched all RET wrongly from any modes.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/711

2005-06-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-06-01  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el: fix.
	write color condition in each defface
	to avoid error on monochrome display.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/706

2005-05-31  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-05-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-reminder.el
	(howm-action-lock-forward): fix.
	menu buffer was collapsed when one hits RET on "@"
	in "[2005-05-30]@ foo" in menu buffer with below setting.
	- (setq howm-menu-expiry-hours 2)
	- (setq howm-action-lock-forward-save-buffer t)
	- (setq howm-menu-refresh-after-save t) ;; this is default
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/705
	(howm-action-lock-forward-invoke):
	kill-buffer when current-buffer was newly opened for this procedure.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/705

2005-05-29  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-vars.el (howm-funcall-if-defined): 
	cheat to avoid annoying "not known to be defined" warning
	in byte-compilation.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1111816102/485

	* howm-view.el (howm-view-sort-items): 
	defalias for compatibility. howmz needs it.
	http://noir.s7.xrea.com/archives/000136.html
	http://noir.s7.xrea.com/pub/zaurus/howmz.el
	thx > (TxT) san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?LinuxZaurus

2005-05-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-todo-menu): fix.
	Insertion of separators was wrong.
	At least one item was placed between separators regardless of priority.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/703

2005-05-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-action-lock-forward-save-buffer): 'defcustom'ed

2005-05-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-mode.el: fix.
	check direct requiring of howm-mode before loading howm-common.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/698

2005-05-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-vars.el
	(howm-menu-list-face): Its default is empty now
	so that we can avoid troubles of reverse-video for emacs -nw.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/697
	(howm-reminder-done-face): default is empty for light background

	* howm-mode.el (howm-refresh): C-c , r on menu calls howm-menu-refresh
	because howm-initialize-buffer on menu erases all underlines.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/696

2005-05-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-keyword-aliases):
	expand aliases of come-from keywords recursively

	* howm-vars.el (howm-keyword-list-alias-sep):
	enable aliases of come-from keywords by default

2005-05-20  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

2005-05-19  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-experimental): moved to howm group

	* howm-reminder.el (howm-highlight-date-regexp-format): new option.
	Some people like to highlight 2005-05-19 rather than [2005-05-19]
	as today, because they use [2005-05-19 20:52]@ for their schedule.

	* configure.in: test version

	* howm-backend.el (howm-folder-territory-p:dir): fix
	wrongly returned nil for non-existing file name.

2005-05-18  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-common.el (howm-first-n): fix.
	avoid "Args out of range" error in xemacs.
	It happened at %recent in menu when number of note files are small
	or empty files exist.
	thx > Nanashi-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2005-05-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-reminder.el (howm-todo-menu): 
	remove deep reminders before sorting

	* howm-vars.el (howm-menu-reminder-separators): new option

	* howm-menu.el (howm-menu-todo): item can be a separator string

2005-05-16  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-mode.el (howm-keyword-search): 
	menu is searched only in howm-directory

	* howm-menu.el (howm-menu): fix
	todo and schedule were searched only in howm-directory
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/685

	* howm-view.el (howm-view-directory): 
	set font-lock-keywords only when howm-ruby-mode-bug is non-nil

	* howm-vars.el (howm-user-font-lock-keywords): new option
	thx > taku-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?Idea

2005-05-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-reminder.el
	(howm-schedule-sort-converter): 
	aware of time part in "[2005-05-15 21:36]@"
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/683
	(howm-schedule-menu): show future schedule one more day

	* configure.in: test version

	* howm-vars.el (howm-after-save-hook): new hook

	* howm-misc.el (howm-set-mode-p): howm-directory can be rast folder

	* howm-backend.el
	(howm-create-file): 
	use howm-folder-get-page-create instead of direct mkdir
	(howm-make-folder:rast): rast folder

	* gfunc.el (gfunc-def): set lisp-indent-hook

	* howm-menu.el (howm-menu): 
	mkdir only when howm-directory is dir folder
	so that howm-directory can be any folder.
	At now, howm-menu-file should be defined in that case;
	howm-menu-initialize-skel assumes dir folder.

2005-05-14  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: test version

	* howm-misc.el (howm-prefix-names): renamed from howm-prex

	* howm-vars.el (howm-prefix): renaming to howm-prefix-key is canceled

2005-05-13  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-excluded-file-regexp): fix: wrong const values

2005-05-12  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-item-list-rangeset): add doc-str around this func

2005-05-11  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-vars.el (howm-prefix-key): renamed to distinguish from function.
	use defvar instead of defcustom
	since setting this variable after loading howm may cause confusion.

	* configure.in: test version

	* howm-mode.el (howm-default-key-table): update
	some are added and some are now globally bound.

	* howm-view.el
	(howm-view-list-title):
	- remove-duplicates
	- toggle title/notitle
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/427
	(howm-view-summary-rebuild): simplified code

	* howm-misc.el
	(howm-random-walk): list all memo first when called on non-howm buffer.
	(howm-auto-narrow): variable howm-auto-narrow can be t.

	* howm-vars.el: Some hidden features are moved to official sections.

2005-05-10  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el
	(howm-menu-shortcut-warn): show list of defined keys
	(howm-menu-invisible):
	tried to remove use of invisible property. but failed.

	* howm-view.el
	(howm-view-search-in-result): aware of paragraph
	(howm-view-remove-by-contents): aware of paragraph
	(howm-view-list-title): aware of paragraph
	(howm-view-filter-uniq): aware of paragraph

	* howm-vars.el (howm-file-name-format): added to howm-efficiency group

2005-05-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* riffle.el (howm-view-summary-window-size): 
	moved to howm-experimental group

	* howm-vars.el (howm-view-before-open-hook): fix.
	used but not defined.

	* configure.in: test version

	* howm-vars.el: some variables are moved from howm-reminder.el.
	(howm-todo-menu-types): "." (done) is included by default
	so that one can easily customize several patterns by setting
	howm-menu-todo-priority and howm-todo-priority-done-bottom.
	Anyway, default value of howm-menu-todo-priority hides "." in menu.
	Since it may cause slow response, I also added it into howm-efficiency
	group.
	(howm-viewer): new customize group

	* howm-menu.el (howm-menu-invoke):
	RET in menu-mode causes jump when the current line matches
	to howm-menu-list-regexp. No need to type C-a now.

	* howm-vars.el (howm-history-limit): 0 means 'no record'

	* howm-common.el (howm-write-history): remove duplicated entries

	* howm-view.el: follow the changes of riffle.el

2005-05-07  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* riffle.el: use gfunc instead of riffle-controller

	* howm.el: order of requires is modified; riffle.el requires gfunc.el.

	* configure.in: test version

	* howm-vars.el
	(howm-view-grep-command):
	use "grep -E" and "grep -F" instead of egrep and fgrep by default.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/670
	(howm-view-grep-file-stdin-option): 
	use "-f -" by default.

	* howm-backend.el (howm-real-grep-multi):
	use howm-view-grep-command instead if howm-view-fgrep-command is nil.

	* howm-mode.el (howm-list-title):
	show title by default for list of all/recent/around notes.

	* howm-vars.el: new file
	begin to support defcustom
	thx >
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?RoadMap
	http://pc8.2ch.net/test/read.cgi/unix/1077881095/668

	* configure.in: version 1.2.3

2005-05-06  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.2.3rc1

	* howm-common.el (howm-with-schedule-interval): fix.
	moved from howm-reminder.el because that macro is used
	in another file howm-menu.el.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/669

	* howm-mode.el (howm-search): fix.
	call howm-list-all for empty regexp.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/668

2005-05-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* configure.in: version 1.2.2

2005-04-29  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el
	(*howm-view-font-lock-keywords*): Spelling is corrected, and
	worthless function howm-view-font-lock-keywords is removed.
	(howm-view-contents-mode): hilight of searched keyword is prior
	to howm-view-contents-font-lock-keywords

2005-04-28  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* cheat-font-lock.el: fix.
	canceled the use of font-lock-add-keywords in
	cheat-font-lock-merge-keywords because "compiled keywords" may be
	passed from current implementation of riffle-contents-mode.
	I guess this is also related to 2005-04-08 problem.

	* howm-common.el (howm-write-history): new option, howm-history-limit

2005-04-26  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-reminder.el (howm-todo-parse-string): avoid warning
	"variable dummy bound but not referenced" in xemacs

	* howm-common.el (howm-dont-warn-free-variable): 
	use macro for frequent trick to avoid warning

	* howm-mode.el (howm-image-file-name-regexps): fix.
	Meadow-1.15 doesn't have image-file-name-regexps.
	thx > Touhi-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2005-04-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-exclude-p): fix.
	No file was searched when howm-directory is a dot-directory
	like "~/.howm".
	My previous cleaning up on this function is canceled.
	See the comment in the source code.
	thx > taku-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

2005-04-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu-copy-skel): fix.
	When come-from keyword %menu% isn't found,
	assume 0000-00-00-000000.howm as menu file if it exists.
	This can happen when you write (setq howm-keyword-header "<==")
	in sample/dot.emacs and then do 'make install && make test'.
	thx > taku-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?BugReport

	* howm-mode.el (howm-image-file-name-regexps): fix.
	(image-file-name-regexp) caused an error on Meadow 2.10
	unless max-specpdl-size is increased from the default value 600.
	thx > taku-san, Mo-san
	http://howm.sourceforge.jp/cgi-bin/hiki/hiki.cgi?MaxSpecpdlSize

	* Makefile.am (EXTRA_DIST): test.bat was not included in tar.gz

2005-04-15  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu): swap priority of two variables
	howm-menu-top and howm-menu-file.
	thx > http://pc8.2ch.net/test/read.cgi/unix/1077881095/648

2005-04-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* cheat-font-lock.el: use old code for emacs20
	New code may make howm-view-summary-open too slow.

2005-04-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (howm-real-grep-multi): new option variables
	howm-view-grep-extended-option and howm-view-grep-fixed-option.
	Now, we can use grep -E and grep -F instead of egrep and fgrep.
	This will help linux-zaurus users.

2005-03-30  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-menu.el (howm-menu-search): embed search result into menu

2005-03-27  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el
	(howm-folder-grep-internal:pages): fix.
	list order was reversed when howm-list-all-title is non-nil
	(howm-real-grep-single): fix. accept list of single pattern
	(howm-folder-files:namazu): variable r bound but not referenced

2005-03-20  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-filter-by-contents): support C-u (= reject)

2005-03-17  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-view.el (howm-view-contents-item): fix.
	doubly displayed when matched to the last line of paragraph

2005-03-09  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el (howm-time-difference-second): omit microsecond

	* howm-misc.el (howm-elp): initialize profiler

2005-03-08  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* test.bat: invoke test environment for win

2005-03-03  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el
	(howm-random-walk-text): clean
	(howm-random-walk): kill old buffers after jump

2005-03-02  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-random-walk): automatic random walk

2005-02-28  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-list-normalize): fix.
	error when '[hoge' is searched.

2005-02-25  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-misc.el (howm-bug-report): C-u to dump variables

	* howm-mode.el (howm-create-default-title-content): fix.
	howm-title-from-search was ignored.

	* howm-backend.el (howm-list-buffers-exclude): new option

2005-02-24  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-keyword-list): never return ""

2005-02-23  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-common.el: fix for xemacs and emacs20

2005-02-22  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* gfunc.el (gfunc-with): replace gfunc-def-with

	* howm-backend.el: howm-page-load is renamed to howm-page-open

	* howm-view.el (howm-view-set-item-list): comeback for howmoney

	* howm-backend.el (howm-folder-grep-internal:namazu): fix.
	didn't work for 'or' patterns

2005-02-21  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el
	(howm-folder-grep-internal:pages): fix.
	Specification of howm-page-type was changed.
	(howm-folder-grep-internal:pages-buffers): fix.
	must return list of items

	* howm-common.el (howm-exclude-p): fast check only

2005-02-20  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-backend.el (howm-files-in-directory): clean up

	* howm-mode.el (howm-content-from-region): new option variable

2005-02-18  HIRAOKA Kazuyuki  <khi@users.sourceforge.jp>

	* howm-mode.el (howm-excluded-file-regexp): add (image-file-name-regexp)

	* howm-backend.el (howm-fake-grep-file): check file name before search.
	thx > Mocchan-san, Matsushita-san
	http://www.bookshelf.jp/pukiwiki/pukiwiki.php?%BC%C1%CC%E4%BD%B8%2F42

	* howm-mode.el (howm-exclude-p): fast check option

	* gfunc.el (gfunc-def): Description string is supported.

	* howm-backend.el: clean up

	* howm-common.el (howm-sort): renamed from howm-view-sort-items

	* illusion.el: renamed from proxy-buffer.el

	* gfunc.el
	(gfunc-def): args-declaration is added.
	(gfunc-def-with): new func

	* howm-backend.el: 
	(howm-search-path-folder): howm-search-path is list of 'folders'.
	(howm-make-folder:namazu): namazu folder
	(howm-make-folder:rot13dir): rot13 folder/page

	* proxy-buffer.el: new file