summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ed823d91bb04f2efa73fae34d866204f5a61895f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
2013-03-02  Bill Wohler  <wohler@newt.com>

        Release MH-E manual version 8.5.

        * README: Update for release 8.5.

2012-11-25  Bill Wohler  <wohler@newt.com>

        Release MH-E manual version 8.4.

        * README: Update for release 8.4.

2011-09-20  Bill Wohler  <wohler@newt.com>

        Release MH-E manual version 8.3.

        * README: Update for release 8.3.

2011-07-02  Bill Wohler  <wohler@newt.com>

	* README: Replace references to CVS with Bazaar.

	* Makefile (CVSROOT, CVSLOGIN, CVSMETHOD): Remove.
	(MH_E_DOC, MH_E_ETC_EMACS) Define and use EMACS_SRC and DOC_DIR
	for ../src/emacs/trunk/doc/misc.
	(MAKEINFOINFOFLAGS): Define input and output options.
	(emacs): Remove.
	($(MH_E_DOC)): Simply link to $(EMACS_SRC)/doc.
	(info/mh-e): Run from current directory. Use updated
	MAKEINFOINFOFLAGS for input and output directories.
	(tag, dist): Update for bzr.
	(backup): Remove. Obsolete.

2009-06-13  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 8.2.

	* README: Update for release 8.2.

2008-09-21  Bill Wohler  <wohler@newt.com>

	* Makefile (update-web-site): Add target for updating web site
	with new procedures (rsync).

	Release MH-E manual version 8.1.

	* README: Update for release 8.1.

	* Makefile (MH_E_ETC_EMACS): Add gpl.texi and doclicense.texi.

2006-11-12  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 8.0.3.

	* README: Update for release 8.0.3.

2006-06-20  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 8.0.1.

	* README: Update for release 8.0.1.

2006-05-06  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 8.0.

	* README: Update for release 8.0.

2006-05-06  Bill Wohler  <wohler@newt.com>

	* fixhtml, mh-book-index.html, mh-book-indexes.html: MH book has
	been restructured, so these files are no longer necessary!
	* Makefile (html/index.html): Don't call fixhtml.

2006-04-24  Bill Wohler  <wohler@newt.com>

	* Makefile (backup): Add @ to suppress echo. It had been deleted
	in a previous revision while debugging.

2006-04-21  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 7.94.

	* README: Update for release 7.94.

2006-04-21  Bill Wohler  <wohler@newt.com>

	* Makefile (MH_E_ETC_EMACS): New variable. Contains man/ChangeLog
	which was in MH_E_ETC.
	(MH_E_DIST): Add $(MH_E_ETC_EMACS).
	(tag): New target for tagging files.
	(backup): Use existing variables rather than duplicating them.
	(all): Use $(MH_E_DOC).
	(emacs): Add. Depend on $(MH_E_DOC).
	(MH_E_DOC): Use variables instead of hard-coded file names.
	
2006-03-14  Bill Wohler  <wohler@newt.com>

	* Makefile (html): Depend on mh-e.html.
	(mh-e.html): Add. Builds a single HTML page.

2006-03-09  Bill Wohler  <wohler@newt.com>

	* Makefile (MH_BACKUP_DIR, MH_FILES, backup): New variables and
	target used to back up CVS files at Savannah.

2006-03-06  Bill Wohler  <wohler@newt.com>

	* README: Note that the CVS MH-E Manual is built into CVS Emacs.
	(INSTALL): Add detail to setting INFOPATH variable. Mention
	texi2pdf instead of texi32dvi, and mention pdfetex.
	(CVS MH-E MANUAL INSTALL): New section.

	* Makefile (MH_E_ETC): Remove fixhtml. No need to put this in
	distribution.
	(html/index.html): Don't run fixhtml if it doesn't exist.
	(dist): Use cp --parents to preserve man directory so that
	ChangeLogs don't clobber each other and make works.

	* mh-e.texi: Move to Savannah. Check out with "make man/mh-e.texi".

	* Makefile (EMACS_HOME): Unused. Delete.
	(CVSROOT, CVSLOGIN, CVSMETHOD): New variables.
	(MH-E-DOC): Rename to MH_E_DOC. Change mh-e.texi to man/mh-e.texi.
	(MH-E-DOCS): Rename to MH_E_ETC. Add man/ChangeLog and ChangeLog.
	(MH_E_DIST): New variable. Combines $(MH_E_DOC) and $(MH_E_ETC).
	(all): Add target man/mh-e.texi.
	($(MH_E_DOC)): New target used to check out manual from Savannah.
	(info/mh-e): Change dependency to $(MH_E_DOC). Set directory to
	man before running since mh-e.texi now has a "setfilename
	../info/mh-e" directive.
	(html/index.html, mh-e.pdf): Change dependency to $(MH_E_DOC).
	(dist): Use $(MH_E_DIST) instead of $(MH-E-DOC) $(MH-E-DOCS).

2006-03-05  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 7.93.
	
	* mh-e.texi (VERSION, EDITION, UPDATED, UPDATE-MONTH): Update for
	release 7.93.

2006-03-04  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (settitle): Change to The MH-E Manual.
	(EDITION): Add, since VERSION is used for software too.
	(Copying): Add dual license, GFDL (with no Invariant Sections, no
	Front-Cover Texts, and no Back-Cover Texts.
	(titlepage): Change title to The MH-E Manual and drop The Emacs
	Interface to the MH Mail System subtitle.
	(Top): Rename to The MH-E Manual.
	(Preface): Add "mail system" to the first utterance of MH.
	(Copying): Split into two appendices: GFDL, which is new, and GPL.
	(GPL): Update FSF address.
	(Getting Started): Added old error message you get when running an
	old version of MH-E when MH isn't installed.

	* Makefile (TEXI2DVIFLAGS): Rename to TEXI2PDFFLAGS.
	(mh-e.pdf): Use texi2pdf instead of texi2dvi. Remove leading -
	from texi2pdf lines since they are no longer necessary now that
	errors have been fixed. Another bonus for fixing the errors is
	that the --clean option works and the $(RM) lines could be removed
	as well.

	* mh-e.texi (Reading Mail Tour, Using This Manual): Fix typo.
	(Ranges): Fix range for looking at a single message.
	(Folder Selection): Clarify environment for
	mh-default-folder-for-message-function.
	(Identities): Try make it more clear that fields will be
	automatically inserted when the message is sent. Note that once
	you use C-c M-d, the fields will not be automatically inserted
	when the message is sent.
	(title): The title was too long, so split it up into a subtitle.
	(Sending Mail Tour, Reading Mail Tour, Processing Mail Tour)
	(Adding Attachments, Searching): Remove @group outside of @example
	as this was causing texi2pdf errors. Apparently now you have to
	put the @group inside an example, but that doesn't do any any good
	to keep the caption together with the example.
	(Aliases): Use different example to avoid overfull warning.
	(Junk): Use smallexamples to avoid overfull warning.
	(Scan Line Formats): Split long string to avoid overfull warning.
	(Using This Manual, Editing Message, Editing Drafts): Break up
	line to avoid overfull warning.
	(Editing Drafts): Break up @samp into multiple @samps to avoid
	overfull warning.
	(Folders, Reading Mail, Procmail): Use @samp instead of `' to
	avoid underfull warning.

2006-02-26  Bill Wohler  <wohler@newt.com>

	* Makefile (MAKEINFODOCBOOKFLAGS, XML_DECL, PRINT_SS, default):
	Delete.
	(TEXI2DVIFLAGS): Add.
	(all): Add pdf target.
	(clean): Use $(RM). Replace pdf with mh-e.pdf.
	(pdf): Change target to mh-e.pdf.
	(pdf/mh-e.xml, pdf/mh-e.tex): Delete.
	(pdf/mh-e.pdf): Rename to mh-e.pdf. Use texi2dvi instead of
	makeinfo/openjade/pdfjadetex.

	* README (PDF): PDF now appears in current directory, not pdf
	sub-directory. Uses texi2dvi instead of makeinfo.

2006-02-24  Bill Wohler  <wohler@newt.com>

	Release MH-E manual version 7.92.
	
	* mh-e.texi (EDITION): Delete.
	(VERSION, UPDATED, UPDATE-MONTH): Update for release 7.92.
	(copying): Remove reference to edition now that version of manual
	corresponds to version of software.
	(titlepage): Ditto.
	(Top, contents): Add HTML comments so table of contents isn't
	duplicated.

	* fixhtml: Convert to /bin/sh. No longer rename index.html to
	Table-of-contents.html. Added mh-book prefix to index.html
	indexes.html which are used by the MH book. No longer need to edit
	files since we're using the real index.html and can also use
	stylesheets to set background color to white.

	* README: Use PDF instead of DVI. Online version now at
	SourceForge. Update for release 7.92.

	* Makefile (MH-E-DOCS): Remove index.html indexes.html. Only
	needed by web site.
	(default): New default target. Displays usage.
	(info): New target. Depends on info/mh-e.
	(mh-e.info): Rename to info/mh-e. Create info directory.
	(html): New target. Depends on html/index.html.
	(mh-e.html): Rename to html/index.html. Create and/or clear html
	directory.
	(pdf): New target. Depends on pdf/mh-e.pdf.
	(mh-e.xml): Rename to pdf/mh-e.xml. Create pdf directory.
	(mh-e.tex): Rename to pdf/mh-e.tex. Use openjade instead of jade.
	(mh-e.pdf): Rename to pdf/mh-e.pdf.
	(mh-e.ps, install, install-emacs, install-online, import-emacs)
	(info, dvi): Delete.

	* index.html: Rename to mh-book-index.html.

	* indexes.html: Rename to mh-book-indexes.html.

	* mh-e.texi: Clean-up editing. In addition to many minor edits and
	fixes, the following changes were also made:
	(Conventions, More About MH-E, Ranges)
	(Folder Selection, Folder Selection, Incorporating Mail)
	(Reading Mail, Viewing, HTML, Folders, Sending Mail)
	(Editing Drafts, Aliases, Identities, Speedbar, Tool Bar)
	(Sequences, Junk, Scan Line Formats, Procmail): Use @c ---
	separator between @item consistently. If a blank line appears
	before index entries before @item, then too many blank lines
	appear in the output. Using @c --- instead of blank lines between
	items keeps the output looking good.
	(Processing Mail Tour): Fix prompt.
	(Leaving MH-E): Document packf for exporting MH mail to avoid
	"lock-in" (suggested by Mark).
	(Options): Use combo box instead of combobox.
	(Reading PGP): Use key server instead of keyserver.
	(Folders): Describe how to rename folders using dired (suggested
	by Mark).
	(Composing): Note that hooks can be set with customize interface.
	(Adding Attachments): Delete obsolete text about
	mh-mime-content-types.
	(Adding Attachments): Move description of mh-mh-to-mime-undo to
	paragraph with mh-mh-to-mime.
	(Aliases): Use GECOS instead of gecos. Switch case of aliases in
	case-dependent example (suggested by Peter). Add example about
	using prefixes for locals, jobs, or activities (suggested by
	Mark).
	(Identities): Move introduction to top of chapter.
	(Searching): Put terms on separate lines in body so that it is
	appropriate for both the search engines and pick. The previous
	regexp only worked for pick.
	(MH FAQ and Support): Fix URL to MH FAQ.
	(Getting MH-E): Document contrib release here and delete
	Contributed Software chapter.
	(XXX): Delete chapter. All cross-references now point to an
	node. 
	(Backmatter): Verify terms in LocalWords list. Move style guide to
	Developers' Guide.

2006-02-21  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Incorporating Mail): Suggest emacsclient which
	supports --eval in Emacs 22 instead of gnudoit.
	(Reading Mail): Delete option mh-show-use-goto-addr-flag. Use
	option `goto-address-highlight-p' directly instead.
	(Folders): Be explicit about types of requests in
	mh-after-commands-processed-hook and
	mh-before-commands-processed-hook.
	(ispell-skip-region-alist): Use add-to-list so variable doesn't
	grow indefinitely.
	(Preface): Add Version 8 to history. Fix URLs to GNU Emacs and MH-E
	manuals.
	(Conventions, Getting Started): Move node out of and in front of
	Tour Through MH-E.
	(Getting Started): Add documentation about mh-variant and mh-path.
	Sync docstrings with manual. Warn about setting mh-progs and
	friends.
	(Using This Manual): Update footnotes to Emacs Lisp manual.
	(Options): New subsection of Using This Manual from text
	originally in Using This Manual.
	(Ranges, Folder Selection): Now subsections of Using This Manual.
	(Preface): Move history to History.
	(From Bill Wohler): New section. Contains history from Preface,
	plus new Version 8 details.

2006-01-15  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Limits): Change keybinding of mh-narrow-to-from from
	/ f to / m; mh-narrow-to-range from / r to / g.

2006-01-14  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Folders): Remove F i (mh-index-search). Change manu
	from Folder > Search a Folder to just Folder > Search and command
	from mh-search-folder to mh-search. Change default value of
	mh-kill-folder-suppress-prompt-hook from mh-index-p to
	mh-search-p.
	(Menu Bar): Rename Pick menu to Search.
	(Tool Bar): Change default value of mh-tool-bar-search-function
	from mh-search-folder to mh-search.
	(Searching): Rewrite chapter to align with new code (closes SF
	#829207).

2006-01-11  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Conventions): Add tcsh to the list of shells that use
	the ~ notation since this is more popular on Linux than vanilla
	csh.

2006-01-10  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Conventions): Move description of ~ here from Getting
	Started.
	(Getting Started): Update text regarding MH installation and
	configuration now that MH-E no longer calls install-mh. Delete
	text about mh-progs et al since the uesr is no longer supposed to
	modify these (and causes trouble if he does).
	(Incorporating Mail): Cross-reference to creator of mh-progs.
	(Using This Manual): Now that all options are changed via the
	customize interface, remove the description and examples of using
	setq.
	(Inserting Messages, Adding Attachments): mh-compose-forward and
	mh-insert-letter now default to the cur message if you choose
	another folder (closes SF #1205890).

2006-01-09  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Composing): Add mail-mode-hook (closes SF #1385571).
	(Editing Drafts, Editing Message, Searching): Add commands for
	moving to and creating Reply-To, Mail-Reply-To, and
	Mail-Followup-To fields (closes SF#1400139).

2006-01-02  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Conventions, Folder Selection, Reading Mail)
	(HTML, Files and Pipes, Folders, Sending Mail, Redistributing)
	(Editing Drafts, Editing Message, Inserting Letter, Signature)
	(Picture, Adding Attachments, Sending PGP, Checking Recipients)
	(Sending Message, Killing Draft, Aliases, Identities, Speedbar)
	(Searching, Threading, Limits, Sequences, Junk, Miscellaneous)
	(Scan Line Formats, Procmail): Document help keys. Document
	missing commands. Add missing menu item index entries. Remove
	function names in short variable descriptions; keyboard command is
	enough. Use option/command/function/variable in front of symbol to
	aid *Help* buffer hyperlinking. Sync docstrings with manual for
	all commands.

2006-01-01  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Conventions): Add reference to Easy Customization in
	Emacs Manual. Add face documentation.
	(Reading Mail, Viewing, Reading PGP, Folders, Editing Drafts)
	(Editing Message, Speedbar, Searching, Scan Line Formats): Add
	documentation about faces.
	(Miscellaneous, Junk): Swap order of these chapters.

2005-12-23  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (HTML): Add descriptions of the
	mm-text-html-renderer choices.

2005-12-22  Bill Wohler  <wohler@newt.com>

	* TODO: May as well add it to the repository in case I get hit by
	a truck.

	* mh-e.texi (Conventions): Add info about hooks. Use "Hook run by
	`function'..." instead of "Invoked...".
	(Getting Started): Talk about mh-find-path setting variables from
	MH profile components and how you can modify that behavior with
	mh-find-path-hook.
	(Incorporating Mail, Reading Mail, Viewing, Folders)
	(Editing Drafts, Inserting Letter, Signature)
	(Adding Attachments, Sending Message, Aliases, Searching): Sync
	docstrings with manual.
	(Folders): Add mh-after-commands-processed-hook,
	mh-before-commands-processed-hook,
	mh-kill-folder-suppress-prompt-hook. Fixed example since "/" is
	taken by limits.
	(Sending Mail): Add mh-forward-hook.
	(Sequences): Add mh-unseen-updated-hook.

2005-12-18  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top, Sending Mail Tour, Aliases): Rename Toolbar to
	Tool Bar.
	(Tool Bar): Rename from Toolbar. Completed chapter.

2005-12-17  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top) Rename Menubar to Menu Bar.
	(Sending Mail Tour): Ditto.
	(Ranges, Folder Selection, Incorporating Mail, Reading Mail)
	(Folders, Sending Mail, Editing Drafts, Aliases, Identities)
	(Speedbar, Toolbar, Searching, Limits, Sequences, Junk)
	(Scan Line Formats): Removed customization and menu comments now
	that the same information appears in the text.
	(Incorporating Mail, Reading Mail, Folders, Sending Mail)
	(Editing Drafts, Identities, Searching, Sequences): Mention
	appropriate menus. Add index entries for menu items.
	(Speedbar): Rename mh-speed-flists-interval to
	mh-speed-update-interval (should have been done a couple of
	check-ins ago).
	(Menu Bar): Rename from Menubar. Completed chapter.
	(Toolbar): Mention mh-toolbar customization group.
	(Threading): Fix cross reference.

2005-12-15  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading Mail, Navigating): Add description of command
	k (mh-delete-subject-or-thread).
	(mh-delete-subject-or-thread). Sync docstrings with manual.
	(Threading): Completed chapter. Sync docstrings with manual.

2005-12-14  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top): Undid last change. Doesn't compile with
	makeinfo -html.
	(Speedbar): Completed chapter. Sync docstrings with manual.

2005-12-13  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top): Put in @ifinfo instead of @ifnottex.

2005-12-09  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Conventions):
	SPC no longer available to complete filenames and folders. Add
	cross reference to Emacs manual.
	(Folder Selection): Fix URL to Emacs manual.
	(Procmail): Set message-mail-user-agent to `mail-user-agent' and
	set mail-user-agent to Emacs interface to MH.

2005-12-04  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading Mail, Folders, Sending Mail)
	(Limits, Sequences, Junk, XXX): Went over all uses of the word
	"RANGE" in the docstrings and made usage consistent. Generally
	speaking, "messages in range" and "range of messages" is redundant
	and just "range" can be used in most circumstances.
	(Folders): Rename mh-index-new-messages-folders to
	mh-new-messages-folders. Rename mh-index-ticked-messages-folders
	to mh-ticked-messages-folders.
	(Reading Mail): Change default of mh-fetch-x-image-url from 'ask
	to Never Fetch (closes SF #831278).
	(Folders): Added keys for mh-sort-folder. Sync docstring from
	mh-sortm-args with manual.
	(Editing Drafts, Signature): Rename
	mh-letter-insert-signature-hook to mh-insert-signature-hook.

2005-12-01  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading Mail, Viewing, Viewing Attachments)
	(Digests, Reading PGP, Printing)
	(Files and Pipes, Navigating)
	(Miscellaneous Commands and Options): Rewrite for current
	codebase. Sync docstrings with manual.
	(Conventions): Use @key{} for RET, SPC, TAB, DEL, and BS
	everywhere. Use @kbd{C-@key{SPC}}.
	(Getting Started): Starting to use "package" instead of library.
	(Leaving MH-E, Adding Attachments, Aliases, Ranges, Junk): Fix
	typo.
	(Using This Manual): Use mh-mhl-format-file instead of
	mhl-formfile.
	(Reading Mail): Prefer "command @kbd{}" over "@kbd{} command" due
	to docstring hyperlinking algorithm.
	(MH-Folder Options): Rename to Miscellaneous Commands and Options
	and move to end of chapter.
	(Folders): Delete mh-default-folder-for-message-function. Add
	mh-recenter-summary-flag. Move mh-folder-mode-hook here from
	MH-Folder Options. Add mh-folder-updated-hook. Add
	mh-folder-updated-hook.
	(Sending Mail): Suggest that customizing mail-user-agent is a good
	idea.
	(Threading): New chapter. Needs to be written.
	(Sequences): Add mh-unseen-updated-hook.
	(Miscellaneous): Note in introduction that this chapter talks
	about special buffers too.
	(Junk): Use bogofilter instead of Bogofilter or BogoFilter.
	(Scan Line Formats): Use "fontification" instead of "fontifying".
	(Procmail): Use GnuCash, not gnucash.
	(XXX): Added some ispell helping keywords and code at the end of
	the file to make it feasible to run ispell-buffer. Add bogofilter
	case requirement.

2005-11-03  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: (Sequences): Document mh-narrow-to-tick. Sync
	docstrings with manual.

2005-11-01  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Sending Mail): Rewrite for current codebase. Sync
	docstrings with manual.
	(Aliases, Identities, Searching)
	(Scan Line Formats): Add draft and regular expression index
	entries.

2005-10-30  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Scan Line Formats): Updated with feedback from Mark.

	Added comments in the title matter.
	
	(@settitle, @top): Use the full title.
	(@title): Remove GNU from GNU Emacs since our audience is more
	than just GNU Emacs users.

2005-10-28  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Viewing, Scan Line Formats): Sync docstrings with
	manual. Ensure all links are in @uref so that in info they look
	like "link text (`url')" which are more easily converted to "link
	text (see URL `url')".

2005-10-27  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Identities): Checkdoc fix.
	(Scan Line Formats): Rewrite for current codebase. New example.

2005-10-23  Bill Wohler  <wohler@newt.com>

	* Makefile (MAKEINFODOCBOOKFLAGS, MAX_TEX_RECURSION, XML_DECL)
	(PRINT_SS): New variables used by new targets.
	(mh-e.dvi): Delete.
	(mh-e.xml, mh-e.tex, mh-e.pdf): New targets that create PDF.

	* mh-e.texi (Editing Drafts): Rewrite chapter and sync up manual
	with docstrings.
	(Incorporating Mail): Small grammatical fix.
	(Ranges): Rewrite and sync up manual with docstrings.

2005-03-17  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Junk): Added mh-junk-background.

2005-03-16  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Folders): Added mh-catchup, mh-index-search.
	(Searching): Added information on indexed searches and synced up
	manual with docstrings.

2005-02-07  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Incorporating Mail): Updated manual to reflect
	changes in mh-customize.el and synced up manual with docstrings.

2005-02-06  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: Use @smallexample and @smalllisp consistently
	throughout chapter. Blank lines between @items were generating
	extra <p> elements in HTML which caused unsightly gaps in the
	tables. Replaced blank lines with @c ---- separators.
	(Aliases): Updated manual to reflect changes in menu items.
	(Identities): Rewrote chapter and synced up manual with
	docstrings.
	
2003-11-03  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (@ref): Convert to @pxref and @xref as much as
	possible. Added special @urefs to Emacs, Emacs Lisp, and PGG
	manuals so that readers of the HTML version would have a valid
	cross-reference
	(section, chapter): Ensured that the right word was used,
	depending on whether we're talking about a section or chapter.

2003-11-01  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (cross-references): Fixed cross-references that were
	no longer pointing to the correct node due to the reshuffling.
	(editing): Removed terms like "below" and "above" that can easily
	get out of date.
	(Reading Mail, Getting Started): Moved mh-lib, mh-lib-progs,
	mh-progs to Getting Started.

2003-10-29  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: Added lead-in paragraphs at the beginning of each
	chapter and before each table of commands and options. Mention
	customization groups
	(Indexing): Heavy duty indexing pass. Added missing index entries,
	removed superfluous index entries (that were covered in a @vtable
	or @ftable), sorted @*index groups, ensured index entries were
	consistent. Still need to go through indices and search through
	text for each item and add index entries for existing entries if
	useful.
	(Organizing): Renamed node to Folders. It looks a lot better in
	the index for the "F" key commands.
	(Variable Index): Renamed to Option Index.
	(Key Index): New node for holding keystrokes and moved keystrokes
	from the command index to the key index. Renamed @findex entries
	to @kindex as appropriate and renamed @ftable to @table as
	necessary.
	(Composing, MH-Folder Options): New sections that contain text
	from main section of chapter. Before, the menu for the chapter's
	sections appeared far, far below rather than up near the top under
	the commands and variables.

2003-10-28  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: Removed "above" and "below" text. After
	reorganization, these relative markers were often incorrect.
	Replaced with cross-references.

2003-10-27  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Viewing): Removed Always Fetch option from
	mh-fetch-x-image-url (closes SF #831278).
	(@ftable): Sorted entries. The sort is as follows: punctuation,
	uppercase single letters, lowercase single letters, control
	characters, meta characters, multiple letters in alphabetical
	order. In some cases, the sort wasn't strictly ASCII. For example,
	SPC (mh-page-msg) reads better before BS (mh-previous-page) and .
	(mh-show) is better before , (mh-header-display).
	(@vtable): Sorted entries and pulled hooks into their own
	@vtables.

2003-10-23  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: The Great Reorganization. Aligned commands and
	variables with customization groups.

2003-10-17  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Organizing): Indicate that visiting a folder with
	unseen messages will just show those unseen messages. Also
	indicate that visiting a folder with the speedbar works in a
	similar fashion to mh-visit-folder (closes SF #623373).

2003-10-16  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top): Removed elisp comment characters (;;) from
	copyright.
	(Viewing): Mention that signatures and vCards are rendered in
	italics.
	(Reading GPG): Filled paragraph.
	(Draft Editing): Added new variables from Signature section.
	Eventually, I'll reorganize so that variables are described in the
	chapter they are listed.
	(Signature): Updated with modern-day signature code which means
	that mh-signature-file-name can be a function, signature
	separators are added, the signature can be a vCard (closes SF
	#802720), and mh-letter-insert-signature-hook is now called at the
	end instead of the beginning of mh-insert-signature. Signatures
	can now also be inserted with identities.

2003-10-16  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading Mail): Use "@samp{+inbox} buffer" instead of
	"+inbox".
	(Identities, and others): Use "header field" in index, not "header".
	(Junk): New section dealing with junk mail.

2003-09-24  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (@table): Converted to @vtable and @ftable as
	appropriate. Also removed blank lines between @*table and @item
	and @end *table. The former is to eliminate an unsightly gap; the
	latter is for consistency. Thought I heard a hobgoblin...
	(@enumerate): Ditto.

	* fixhtml (fix_texinfo_html): Substitute index.html for
	Table-of-Contents.html since we renamed index.html for
	Table-of-Contents.html.

	* mh-e.texi (Top): Added warning about using makeinfo 4.6 or
	greater which is needed to handle the @copying commands.
	([vf]table): Removed blank line below these commands as this
	inserts unsightly whitespace in the document.
	(Reading Mail): Use ftable instead of table, add findex in quick
	reference to catch functions, remove now redundant findex and
	vindex commands in chapter. Removed mh-visible-headers. Renamed
	mh-invisible-headers to mh-invisible-header-fields. Updated
	mh-clean-message-header-flag. Added
	mh-invisible-header-fields-default (closes SF #752045).
	(Viewing): Updated documentation for mh-visible-headers (removed),
	mh-invisible-headers (renamed to mh-invisible-header-fields),
	mh-clean-message-header-flag, and added
	mh-invisible-header-fields-default (closes SF #752045).

	* Makefile (TEXI2HTMLFLAGS): Obsolete. Should have removed
	yesterday.

2003-09-23  Bill Wohler  <wohler@newt.com>

	* Makefile (MAKEINFOINFOFLAGS): Renamed from MAKEINFOINFOFLAGS.
	(MAKEINFOHTMLFLAGS): New variable to hold HTML flags for makeinfo.
	(all): Removed mh-e.ps target and added clean target.
	(clean): New target which removes directories created by this
	Makefile.
	(mh-e.info): Use MAKEINFOINFOFLAGS.
	(mh-e.html): Call makeinfo instead of texi2html. This is better
	for several reasons: makeinfo more actively maintained than
	texi2html, files are named with the node names instead of magical
	numbers so assumptions about the filenames can be made (this
	cleaned up fixhtml and Makefile dramatically), footnotes are on
	the same page instead of on a single page, the table of contents
	is prettier, the @vtable and @ftable commands are handled
	correctly (they were doubled in the indices in texi2html). The
	only disadvantages I've seen is that the navigation buttons aren't
	repeated on the bottom of each page and the indices aren't divided
	by letter. These are minor. Don't depend on html subdirectory,
	makeinfo creates it.
	(html): Deleted. Obsolete.

	* fixhtml: Now that makeinfo is used, no longer need to search
	each file to see where links should be made. Also, since the
	filenames now match the node names, many of the links no longer
	need to be made.
	(index.html): Rename to Table-of-Contents.html since the MH book
	assumes a different index.html.
	(fix_texinfo_html): Downcase body tags.

	* indexes.html: Use makeinfo filenames for indices instead of link
	names previously created with fixhtml.
	s/mh-e_toc.html/Table-of-Contents.html/ to be more consistent with
	makeinfo naming conventions.

	* index.html: s/mh-e_toc.html/Table-of-Contents.html/ to be more
	consistent with makeinfo naming conventions.

	* mh-e.texi (MH-BOOK-HOME): Changed from
	http://www.ics.uci.edu/~mh/book to
	http://www.ics.uci.edu/~mh/book/mh.
	(Addresses): Replaced @ with at in text. Replaced @host with
	@stop.spam-abuse.org in examples to minimize spam harvesting.
	(Profile components): Now contain a trailing colon (:) like header
	fields.
	(Sending Mail): Added M-TAB (mh-letter-complete) keybinding,
	mh-letter-complete-function option.
	(Aliases): New node that covers how MH-E handles aliases (closes
	SF #745634).
	(Draft Editing): Use vtable instead of table.
	(Organizing): Removed example about creating folder names based
	upon sender of message now that this is built-in.

2003-08-24  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Viewing): Removed example of shoving
	mh-update-sequences into mh-show-hook because MH-E now does this
	by default.
	(Sending Mail): Moved variable table under command table.
	Described new method of editing draft (direct editing) and old
	method via customization (closes SF #745622).

2003-08-19  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Limits): New section which documents the ways of
	limiting the output of the MH-Folder buffer (closes SF #732823).
	(header fields): Undid change in version 1.43 where colons in
	header field names were removed. I had done this originally to
	reflect RFC 822 and RFC 2822 is still like that. Documentation
	should remain consistent with the standards.
	(cc): s/cc/Cc/ in field names and except where cc is literal, as
	in components files, or function names
	(Identities): Added some formatting commands and fixed the text
	about inserting the auto-fields at the beginning now that we no
	longer do that.

2003-08-18  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Moving Mail, Organizing): Document "F n", "F '", "F q",
	"mh-index-new-messages-folders, mh-index-ticked-messages-folders
	(closes SF #718833). 
	(Sequences): Document "'" (closes SF #718833).

2003-08-16  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: (Reading Mail Tour, Reading Mail): mh-rmail now shows
	unseen messages as well as new messages from inc, so simply say
	that mh-rmail doesn't show read messages (closes SF #667542).

	* mh-e.texi: According to the grant-back clause of the assignment
	of copyright contract to the FSF, I have relicensed the manual
	under the GPL. This should allow all MH-E developers, who have
	also assigned copyright to the FSF, to cut and paste changes
	between the code and manual freely. This should also remove any
	issues with the Debian DFSG.

	While the details still need to be worked out, developers should
	agree that any changes they make to the manual will be relicensed
	under the GFDL when they are incorporated into the Emacs version.
	Until notified otherwise, developers implicitly agree to these
	terms if they make any changes.
	
	* mh-e.texi (Folder Selection) New section that describes how
	folder names are generated (closes SF #657096, SF #664821).

2003-08-15  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Various Header Fields): Removed colon from header
	field name. Doesn't seem right in the flow of the text.
	(Identities): New section to describe multiple personalities or
	identies code (closes SF #627035, #747890).

2003-08-08  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: Merged in changes from version 1.14 in CVS Emacs.

2003-08-04  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Ranges): New section that describes what a range is
	and how to use it. Updated all other sections that used to refer
	to the use of a prefix argument to specify a sequence to refer to
	a range instead (closes SF #626361, SF #728638).
	(footnotes): For some reason, all of the footnotes were off in
	their own world. I moved them within the sentence's punctuation.
	(Organizing): Added info about speedbar (closes SF #503727).
	(references): Moved indexing commands before @item throughout so
	that item heading would appear on the page when clicking on an
	index entry.
	(variables): Boolean variables now end with -flag (closes SF
	#627015).

2003-08-01  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Using This Manual): Renamed from Introduction.
	(Reading Mail): Mentioned that keybindings work in the MH-Show
	buffer too (closes SF #493749).

2003-07-31  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Viewing): Added verbiage for viewing X-Face header
	field and friends (closes SF #480770).
	(Picture): New section that tells how to add X-Face header field
	and friends (closes SF #480770).
	(Sending GPG): Moved under Draft Editing.
	(Inserting Letter): Added word about filling paragraphs with
	`mh-ins-buf-prefix' (closes SF #489927).
	(Recipients, Sending Message, Organizing, Sequences): Mentioned
	various buffer names that the varous commands use. Added
	cross-references to the Miscellaneous chapter (closes SF #493170).
	(Miscellaneous): Added cross-references from the buffer names to
	the sections whose commands use those buffers (closes SF #493170).
	(Introduction, Miscellaneous): Added info about quick help (with
	"?" and "C-c ?" keys) and *MH-E Help* buffer (closes SF #493740).

2003-07-29  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading GPG, Sending GPG): New sections (closes SF
	#405625).
	(Reading Mailing Lists Effectively): Fixed examples.
	(Using MH-E): Renamed to Introduction and made subsections of this
	chapter bonafide chapters.
	(Reading HTML): New section that discusses MH-E's ability to
	display HTML (closes SF #453352).

2003-07-26  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Reading Mailing Lists Effectively): New section.
	Talks about using procmail to incorporate mail from mailing lists
	and using MH-E and Gnus to read it (closes SF #405611).
	(Miscellaneous): Added information about the various MH-E buffers.

2003-07-17  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Scan Line Formats): Updated with font lock changes
	(closes SF #405606). Faces not yet documented.

2003-06-24  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Top): Make it clear that this version is not to be
	touched. Even with a 10-foot pole.
	(Miscellaneous Commands): Renamed to Miscellaneous Commands,
	Variables, and Buffers. New MH-E buffers documented.
	
2003-04-24  Bill Wohler  <wohler@newt.com>

	* mh-e.texi: Some reformatting with a single space after periods,
	or just plain filling.
	(Top): Upcase MH-E in title. Set VERSION to 7.3, UPDATED and
	UPDATED-MONTH to 24 April 2003. Set MH-E-HOME to
	http://mh-e.sourceforge.net/. Updated Copyright.
	(MH FAQ): Renamed to MH FAQ and Support. Added link to MH FAQ.
	Added link to MH-E SourceForge support.
	(Getting MH-E): Don't reiterate install info; reference README
	instead. Also, mh-version now autoloads, so don't have to run any
	other command first.

2002-10-31  Bill Wohler  <wohler@newt.com>

	* Makefile, README, fixhtml, index.html, indexes.html, mh-e.texi:
	Replaced mh-e with MH-E.

2002-10-11  Bill Wohler  <wohler@newt.com>

	* Makefile (EMACS_HOME): Set default to $(TOP)/../emacs so it
	would be useful. Also use ?= instead of ifndef which is apparently
	more portable.

2002-04-08  Bill Wohler  <wohler@newt.com>

	* mh-e.texi (Sending Mail): Updated footnote about draft folders
	per a user's suggestion.

2001-12-29  Bill Wohler  <wohler@phone.com>

	*mh-e.texi: 
	First phase of mh-e version 6.0 coverage.
	Removed a space between a texinfo command and the opening brace.
	Replaced @code with @command, @samp, etc. as appropriate (closes
	SF #405618).
	Documented mh-lib-progs (closes SF #405615).
	Backed out quick reference guide.
	Moved mherg.html into Texinfo. However, upon further reflection, I
	think the existing format already serves as a quick reference
	guide, and I don't think that the extra tables will be worth the
	extra maintenance effort. I'm therefore saving this version, but
	will be removing the tables in the next check-in. I won't undo the
	entire check-in as there were a couple of other small, cosmetic
	changes I want to keep (closes SF #405610).
	Moved Scan Line Formats up a level as its location in Organizing
	was not obvious enough (closes SF #405608).
	Added example for mh-quit-hook (closes SF #405565).
	Put the references to the MH book back in (closes SF #405549).
	Rewrote MIME section to make more clear (closes SF #405547 and
	#446471) and to include new functionality in 6.0.
	Call Emacs Lisp functions functions, not commands. Indeed, they
	were already called functions throughout, except in a short
	discussion of terminology.
	Updated screen shots for Emacs 21. Also fixed up line lines within
	these screen shots so that they wouldn't extend past the limits of
	the cartouche in the DVI file.
	Improved continuity between commands and configuration.
	Simply filled all the paragraphs to make later changes less
	apparent in the diffs. I believe the only difference is that
	sentence-end-double-space is now nil.
	Initial pass at merging Chapters 2 and 3. Chapters are merged, but
	editing reminas to be done to improve the flow (closes SF
	#405605).

	* indexes.html: Downcased HTML tags.
	Removed <link> tag.
	Removed mention of Quick Reference Guide, which has been removed.
	Removed <address> and mailto tags. Spam prevention.

	* index.html: Downcased HTML tags.
	Removed <link> tag.
	Removed mention of Quick Reference Guide, which has been removed, and
	Preface, which is redundant (with Table of Contents).
	Put Table of Contents and Index links on their own line to avoid
	folding.
	Removed <address> and mailto tags. Spam prevention.

	* fixhtml: No longer use mherg.html.

	* mherg.html: Removed. Too much hassle to maintain and beginning
	of each chapter in Using mh-e is a quick reference already.

	* Makefile: Added a README to the tarball and made the user of the
	Makefile targets more obvious to make the installation more clear
	(closes SF #481769).
	No longer use mherg.html.
	(%.info): Removed .. from settitle (in order to run M-x
	makeinfo-buffer, so no longer have to cd into info before running
	makeinfo.
	(%.html): Don't need to recursively delete files. Also, fixhtml
	copies index.html, indexes.html and mherg.html into html, so don't
	need to do it in the Makefile.

	* README: New file to let users know what they should do with this
	tarball.

2001-12-16  Bill Wohler  <wohler@newt.com>

	* Makefile (dist, install-online, %.html): Replaced $(RM) with rm
	-rf (closes SF #488661).
	(import-emacs): New, yet unimplemented, target.

2001-11-11  Bill Wohler  <wohler@newt.com>

	* fixhtml: Slight changes in titles for texi2html 1.65.

2001-02-19  Bill Wohler  <wohler@newt.com>

	* Makefile (EMACS): Renamed to EMACS_HOME. Also, don't define if
	EMACS_HOME already exists to give developer a chance to set
	environment variable.
	(all): Build mh-e.html, mh-e.info, and mh-e.ps by default.

2001-02-18  Bill Wohler  <wohler@newt.com>

	* Release mh-e-doc-1.3 for Emacs 21.1.
	
	* mh-e.texi (Viewing): Added mh-header-display index entry.
	(Organizing,Customizing Reading): Added mh-kill-folder index entry.

	* fixhtml (dohtml): Now part of main program now that program
	only fixes HTML files. Added -w and strict usage.
	(usage,dodvi,doinfo): Deleted.
	(fix_ref_links): Fixed a few uninitialized variables. Found a
	couple of variables and commands that weren't indexed.

	* Makefile (EMACS): Point to $(TOP)/../remote/emacs.
	(MH-E-DOCS): Added all relevant files.
	(ONLINE_DIR): Contains target directory for online files.
	(TEXI2HTMLFLAGS, MAKEINFOFLAGS): Added.
	(dist): Tags will have doc in them, so don't need to add. Release
	will now have all relevant files, rather than just mh-e.texi.
	(install-emacs): First ask user if he has updated and incorporated
	target emacs directory.
	(install-online): Implemented.
	(%.info,%.html,%.dvi,%.ps): Added.

	* mh-e.texi: This version will most likely appear in Emacs
	21.1.
	(Preface): The current version of mh-e has come
	standard since 19.29. Since Version 5 of mh-e has been out so
	long, lots of text regarding earlier versions was pruned.
	(Conventions): Use BACKSPACE instead of DELETE in Emacs 21.
	(Reading MIME): Use nmh commands.
	(Bug Reports): Current maintainer now Bill Wohler. Bug reports now
	at SourceForge.
	(Mailing List): Mailing lists now at SourceForge.
	(MH FAQ): FAQ now at faqs.org.
	(Getting mh-e): Version in Emacs should be fairly up to date. New
	releases at SourceForge.
	(History): mh-e now maintained by Bill Wohler at SourceForge.
	(Changes to mh-e): Gone.
	(Copying): Clean up close-quote punctuation (rms-1.7).