ChangeLog 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468
  1. 2012-08-24 Chong Yidong <cyd@gnu.org>
  2. * Version 24.2 released.
  3. 2012-06-01 Chong Yidong <cyd@gnu.org>
  4. * Version 24.1 released.
  5. 2011-11-20 Bill Wohler <wohler@newt.com>
  6. * Release MH-E version 8.3.1.
  7. * mh-e.el (Version, mh-version): Update for release 8.3.1.
  8. 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
  9. * mh-utils.el (mh-folder-list): Fix typo.
  10. (mh-children-p): Move part of the docstring to a comment.
  11. 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
  12. * mh-search.el (mh-pick-parse-search-buffer): Fix typo.
  13. 2011-09-20 Bill Wohler <wohler@newt.com>
  14. Release MH-E version 8.3.
  15. * mh-e.el (Version, mh-version): Update for release 8.3.
  16. 2011-07-30 Bill Wohler <wohler@newt.com>
  17. * mh-show.el (mh-unvisit-file): Clarify language in yes-or-no-p
  18. and error messages.
  19. 2011-07-17 Bill Wohler <wohler@newt.com>
  20. Release MH-E version 8.2.93.
  21. * mh-e.el (Version, mh-version): Update for release 8.2.93.
  22. * mh-compat.el (mh-pop-to-buffer-same-window): Delete.
  23. * mh-folder.el (mh-inc-folder, mh-modify, mh-scan-folder)
  24. (mh-make-folder): Revert to switch-to-buffer, as the Emacs folks
  25. decided that it was fine to use it in programs.
  26. 2011-07-16 Bill Wohler <wohler@newt.com>
  27. Release MH-E version 8.2.92.
  28. * mh-e.el (Version, mh-version): Update for release 8.2.92.
  29. 2011-07-12 Bill Wohler <wohler@newt.com>
  30. Release MH-E version 8.2.91.
  31. * mh-e.el (Version, mh-version): Update for release 8.2.91.
  32. * mh-compat.el (mh-pop-to-buffer-same-window): Add compatibility
  33. function to call switch-to-buffer on systems that lack
  34. pop-to-buffer-same-window.
  35. * mh-folder.el (mh-inc-folder, mh-modify, mh-scan-folder)
  36. (mh-make-folder): Call mh-pop-to-buffer-same-window instead of
  37. switch-to-buffer. The previous change which used pop-to-buffer
  38. produced the wrong behavior.
  39. 2011-07-12 Henrique Martins <henrique@martins.cc> (tiny change)
  40. * mh-xface.el (mh-picon-get-image): Remove quote from block
  41. argument.
  42. * mh-mime.el (mh-mh-directive-present-p): Ditto.
  43. 2011-07-10 Bill Wohler <wohler@newt.com>
  44. Release MH-E version 8.2.90.
  45. * mh-e.el (Version, mh-version): Update for release 8.2.90.
  46. * mh-utils.el (mh-sub-folders-actual): Remove FIXME question.
  47. * mh-mime.el (mh-decode-message-subject): Fix case of Subject.
  48. * mh-folder.el (mh-inc-folder, mh-modify, mh-scan-folder)
  49. (mh-make-folder): Replace calls to switch-to-buffer with of
  50. pop-to-buffer. The former is intended for interactive use only
  51. and generates warnings in Emacs 24.
  52. 2011-07-09 Bill Wohler <wohler@newt.com>
  53. * mh-speed.el (mh-speed-toggle,mh-speed-view): Document "ignored"
  54. arguments to keep checkdoc happy.
  55. * mh-search.el (mh-flists-execute): Ditto.
  56. * mh-funcs.el (mh-undo-folder): Ditto.
  57. * mh-comp.el (mh-user-agent-compose): Ditto.
  58. * mh-xface.el (mh-face-to-png, mh-uncompface)
  59. (mh-picon-file-contents): Only call set-buffer-multibyte if it
  60. exists, which it doesn't in XEmacs.
  61. 2011-07-04 Bill Wohler <wohler@newt.com>
  62. * mh-e.el: Just require mh-loaddefs since loading it in an
  63. eval-and-compile block causes compilation errors in XEmacs.
  64. * mh-acros.el, mh-comp.el, mh-e.el, mh-folder.el, mh-letter.el:
  65. * mh-mime.el, mh-search.el, mh-seq.el: Shush XEmacs compiler in
  66. mh-do-in-xemacs block.
  67. * mh-compat.el (mh-window-full-height-p): Add compatibility
  68. function for XEmacs.
  69. * mh-show.el (mh-show-msg): Use it, and avoid compiler warning on
  70. XEmacs.
  71. * mh-letter.el (mh-letter-mode-map, mh-letter-complete)
  72. (mh-complete-word): Remove FIXME comments since these functions
  73. are still needed in other Emacsen. However, they can probably
  74. stand to be generalized like completion-at-point.
  75. (mh-letter-complete-or-space): Remove unused variable.
  76. 2011-07-03 Bill Wohler <wohler@newt.com>
  77. * mh-compat.el (mh-test-completion): Add compatibility function
  78. for XEmacs.
  79. * mh-alias.el (mh-alias-letter-expand-alias): Use it, and avoid
  80. compiler warning on XEmacs.
  81. * mh-utils.el:
  82. * mh-mime.el: Shush XEmacs compiler in mh-do-in-xemacs block.
  83. * mh-folder.el: Use boundp instead of fboundp when testing
  84. existence of desktop-buffer-mode-handlers (closes SF #1510145).
  85. 2011-05-10 Jim Meyering <meyering@redhat.com>
  86. Fix doubled-word typos.
  87. * mh-alias.el (mh-alias-minibuffer-confirm-address): if if -> if it
  88. * mh-scan.el (mh-scan-destination-width): in in -> in
  89. 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
  90. * mh-utils.el (mh-folder-completion-function): Make it work like
  91. file-name completion, so partial-completion can do its job.
  92. * mh-letter.el (mh-letter-completion-at-point): New function, extracted
  93. from mh-letter-complete
  94. (mh-letter-mode, mh-letter-complete, mh-letter-complete-or-space):
  95. Use it.
  96. (mh-complete-word): Only use the common-substring arg when it works.
  97. (mh-folder-expand-at-point):
  98. * mh-alias.el (mh-alias-letter-expand-alias): Return data suitable for
  99. completion-at-point-functions.
  100. 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
  101. * mh-funcs.el (mh-undo-folder): Accept and ignore arguments,
  102. for compatibility with `revert-buffer'. Doc fix. (Bug#8431)
  103. 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
  104. * Version 23.3 released.
  105. 2011-03-05 Antoine Levitt <antoine.levitt@gmail.com>
  106. * mh-funcs.el (mh-store-msg, mh-store-buffer):
  107. * mh-mime.el (mh-mime-save-parts): Use read-directory-name.
  108. 2011-01-13 Chong Yidong <cyd@stupidchicken.com>
  109. * mh-comp.el (mh-user-agent-compose): New arg RETURN-ACTION.
  110. 2010-11-07 Glenn Morris <rgm@gnu.org>
  111. * mh-seq.el (mh-read-msg-list): Use point-at-eol.
  112. 2010-11-03 Glenn Morris <rgm@gnu.org>
  113. * mh-mime.el (dots, type, ov): Avoid unnecessary declaration.
  114. 2010-05-14 Peter S Galbraith <psg@debian.org>
  115. * mh-mime.el (mh-decode-message-subject): New function to decode
  116. RFC2047 encoded Subject lines. Used for reply drafts.
  117. * mh-comp.el (mh-compose-and-send-mail): Call
  118. `mh-decode-message-subject' on (reply or forward) message drafts.
  119. 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
  120. * Version 23.2 released.
  121. 2010-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
  122. * mh-show.el (mh-showing-mode): Move function to mh-e.el.
  123. * mh-e.el (mh-showing-mode): Use define-minor-mode.
  124. 2010-03-24 Juanma Barranquero <lekktu@gmail.com>
  125. * mh-scan.el (mh-scan-cmd-note-width): Doc fix.
  126. (mh-scan-format-mh, mh-scan-body-regexp, mh-scan-cur-msg-number-regexp)
  127. (mh-scan-cur-msg-number-regexp, mh-scan-date-regexp)
  128. (mh-scan-deleted-msg-regexp, mh-scan-good-msg-regexp)
  129. (mh-scan-msg-format-regexp, mh-scan-msg-format-string)
  130. (mh-scan-msg-number-regexp, mh-scan-rcpt-regexp)
  131. (mh-scan-refiled-msg-regexp, mh-scan-sent-to-me-sender-regexp)
  132. (mh-scan-subject-regexp, mh-update-scan-format)
  133. (mh-msg-num-width-to-column): Fix typos in docstrings.
  134. 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
  135. * Branch for 23.2.
  136. 2009-12-01 Bill Wohler <wohler@newt.com>
  137. * mh-search.el (mh-mairix-execute-search): Use mh vfolder_format.
  138. Fix typo in database path.
  139. (mh-namazu-execute-search): Specify -q in example since namazu is
  140. excessively garrulous.
  141. 2009-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
  142. * mh-thread.el (mh-thread-set-tables):
  143. * mh-speed.el (mh-folder-speedbar-menu-items, mh-speed-stealth-update):
  144. (mh-speed-extract-folder-name, mh-speed-parse-flists-output):
  145. (mh-speed-invalidate-map, mh-speed-add-folder):
  146. * mh-show.el (mh-invalidate-show-buffer, mh-show-sequence-menu):
  147. * mh-seq.el (mh-list-sequences):
  148. * mh-search.el (mh-index-execute-commands, mh-index-add-to-sequence)
  149. (mh-index-delete-from-sequence, mh-index-update-maps):
  150. * mh-scan.el (mh-msg-num-width):
  151. * mh-print.el (mh-ps-spool-buffer):
  152. * mh-mime.el (mh-mime-save-parts, mh-handle-set-external-undisplayer)
  153. (mh-file-mime-type):
  154. * mh-letter.el (mh-yank-cur-msg):
  155. * mh-funcs.el (mh-list-folders, mh-pipe-msg, mh-store-msg)
  156. (mh-store-buffer):
  157. * mh-folder.el (mh-modify, mh-visit-folder, mh-write-msg-to-file)
  158. (mh-prompt-for-refile-folder):
  159. * mh-e.el (mh-exec-cmd, mh-exec-cmd-error, mh-exec-cmd-daemon)
  160. (mh-handle-process-error, mh-variant-info):
  161. * mh-comp.el (mh-forward):
  162. * mh-alias.el (mh-alias-local-users, mh-alias-which-file-has-alias):
  163. (mh-alias-add-alias-to-file): Use with-current-buffer (closes SF
  164. #1903293).
  165. 2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
  166. * mh-e.el: Load mh-loaddefs during compilation as well.
  167. 2009-11-04 Juanma Barranquero <lekktu@gmail.com>
  168. * mh-e.el (mh-loaddefs): Load rather than require.
  169. 2009-10-06 Glenn Morris <rgm@gnu.org>
  170. * mh-show.el (mh-show-msg): Use window-full-height-p.
  171. 2009-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
  172. * mh-comp.el (mh-send-letter): default-buffer-file-coding-system
  173. => (default-value 'buffer-file-coding-system).
  174. 2009-08-10 Bill Wohler <wohler@newt.com>
  175. * mh-junk.el (mh-spamassassin-blacklist, mh-bogofilter-blacklist)
  176. (mh-spamprobe-blacklist): Sync docstring with manual.
  177. 2009-07-22 Kevin Ryde <user42@zip.com.au>
  178. * mh-junk.el (mh-spamassassin-blacklist, mh-bogofilter-blacklist)
  179. (mh-spamprobe-blacklist): Hyperlink URLs in docstrings with URL `...'.
  180. 2009-06-13 Bill Wohler <wohler@newt.com>
  181. Release MH-E version 8.2.
  182. * mh-e.el (Version, mh-version): Update for release 8.2.
  183. * mh-seq.el (mh-folder-size-flist)
  184. * mh-speed.el (mh-speed-parse-flists-output)
  185. * mh-xface.el (mh-face-display-function): Remove trailing space.
  186. 2009-03-13 D. Goel <deego3@gmail.com>
  187. * mh-seq.el (mh-folder-size-flist): Use (values-list) in m-v call
  188. to list.
  189. * mh-speed.el (mh-speed-parse-flists-output): Ditto.
  190. * mh-xface.el (mh-face-display-function): Ditto.
  191. * mh-search.el (mh-index-parse-search-regexp): Ditto.
  192. * mh-thread.el (mh-thread-generate): Ditto.
  193. * mh-seq.el (mh-parse-flist-output-line): Return list rather than values.
  194. We want to avoid emacs using m-v facilities.
  195. (mh-folder-size-folder): Ditto.
  196. (mh-parse-flist-output-line): Ditto.
  197. * mh-thread.el (mh-thread-prune-subject): Ditto.
  198. * mh-xface.el (mh-picon-get-image): Ditto.
  199. (mh-picon-file-contents): Ditto.
  200. * mh-search.el (mh-index-evaluate): Ditto.
  201. 2009-01-27 Bill Wohler <wohler@newt.com>
  202. * mh-funcs.el (mh-pack-folder): Fix docstring.
  203. * mh-e.el (mh-pack-folder-hook): Bump package-version to 8.2.
  204. * mh-gnus.el (mh-mm-merge-handles)
  205. (mh-mm-set-handle-multipart-parameter, mh-mm-inline-text-vcard)
  206. (mh-mml-minibuffer-read-disposition, mh-mm-save-part): Update with
  207. code from Gnus 5.11 (closes SF #2235022).
  208. 2009-01-26 Stephen Gildea <gildea@stop.mail-abuse.org>
  209. * mh-e.el (mh-pack-folder-hook): New variable.
  210. * mh-funcs.el (mh-pack-folder): Call new mh-pack-folder-hook.
  211. 2009-01-26 Bill Wohler <wohler@newt.com>
  212. * mh-utils.el (mh-goto-header-end): Use mh-mail-header-separator
  213. instead of -* in regexp.
  214. * mh-folder.el (mh-folder-mode-help-messages): Add e and t to K's
  215. help.
  216. 2009-01-09 Glenn Morris <rgm@gnu.org>
  217. * mh-letter.el: Replace last-input-char with last-input-event.
  218. 2008-08-18 Bill Wohler <wohler@newt.com>
  219. Release MH-E version 8.1.
  220. * mh-e.el (Version, mh-version): Update for release 8.1.
  221. 2008-08-11 Bill Wohler <wohler@newt.com>
  222. * mh-e.el (mh-variant-mh-info, mh-variant-nmh-info)
  223. (mh-variant-set-variant, mh-variant-p, mh-profile-component)
  224. (mh-variant-set, mh-variant, mh-scan-format-file): Fix typo in
  225. docstring.
  226. * mh-comp.el (mh-reply)
  227. * mh-e.el (mh-sys-path, mh-variant-info, mh-variant-mu-mh-info)
  228. (mh-variant-p, mh-profile-component, mh-variant-set, mh-variant)
  229. (mh-scan-format-file)
  230. * mh-folder.el (mh-regenerate-headers)
  231. * mh-scan.el (mh-scan-format)
  232. * mh-search.el (mh-pick-regexp-builder): Rename variant mu-mh to
  233. gnu-mh and be explicit about GNU mailutils MH in docstrings (with
  234. thanks to Darel Henman) (closes SF #1768928).
  235. 2008-08-01 Bill Wohler <wohler@newt.com>
  236. * mh-show.el (mh-show-preferred-alternative)
  237. * mh-e.el (mh-annotate-msg-hook): Sync docstring with manual.
  238. * mh-comp.el (mh-send-letter, mh-redistribute): Mention
  239. mh-annotate-msg-hook in docstring.
  240. 2008-06-29 Jeffrey C Honig <jch@honig.net>
  241. * mh-e.el (mh-invisible-header-fields-internal): Add invisible
  242. header fields for X-Hz (mail from Hertz), X-Proofpoint (Proofpoint
  243. antivirus/anti-spam) and X-RIM (Research In Motion).
  244. 2008-06-20 Stephen Eglen <stephen@gnu.org>
  245. * mh-show.el (mh-defun-show-buffer): Use `...' rather than
  246. "..." in generated docstrings.
  247. 2008-06-12 Glenn Morris <rgm@gnu.org>
  248. * mh-seq.el (tool-bar-map): Define for compiler.
  249. * mh-folder.el (mh-folder-mode):
  250. * mh-letter.el (mh-letter-mode):
  251. * mh-show.el (mh-show-mode): Check tool-bar-map is bound.
  252. 2008-06-08 John Paul Wallington <jpw@pobox.com>
  253. * mh-acros.el (toplevel): Put `doc-string-elt' properties on
  254. `defun-mh' and `defmacro-mh'.
  255. * mh-alias.el (mh-alias-read-address-map): Define within defvar.
  256. * mh-comp.el (mh-letter-mode-syntax-table): Define within defvar.
  257. * mh-letter.el (mh-complete-word): Doc fix.
  258. 2008-06-02 John Paul Wallington <jpw@pobox.com>
  259. * mh-e.el (mh-exec-cmd-env-daemon): Doc fix.
  260. 2008-06-01 John Paul Wallington <jpw@pobox.com>
  261. * mh-e.el (mh-path, mh-variant): Use dotted syntax for
  262. `package-version' info.
  263. 2008-05-26 Jeffrey C Honig <jch@honig.net>
  264. * mh-e.el (mh-invisible-header-fields-internal): Remove Newsgroups
  265. from the list. Add Bytes, X-Campaignid, X-Country-Chain,
  266. X-Declude-, X-fmx-, X-Identity, X-Mailer_, X-pair-, X-SPF-,
  267. X-Usenet-Provider.
  268. 2008-05-23 Bill Wohler <wohler@newt.com>
  269. * mh-e.el (mh-invisible-header-fields-internal): Remove
  270. DKIM-Signature as it is covered by DKIM-. Fully qualify X-EID.
  271. 2008-05-19 Sergey Poznyakoff <gray@gnu.org.ua>
  272. * mh-mime.el (mh-mh-to-mime, mh-mh-to-mime-undo): Preserve modes
  273. when converting to or from MIME (closes SF #1966722).
  274. 2008-05-19 Bill Wohler <wohler@newt.com>
  275. * mh-e.el (mh-invisible-header-fields-internal): Sort list in a
  276. case-insensitive way and add comment about it. Add many header
  277. fields (closes SF #1916032).
  278. 2008-05-19 Xavier Maillard <xma@gnu.org> (tiny change)
  279. * mh-utils.el (mh-find-path): Don't throw error if MH environment
  280. variable is being used (closes SF #1946861).
  281. 2008-05-19 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
  282. * mh-search.el (mh-mairix-regexp-builder): Add additional items to
  283. search string to support org-mode (closes SF #1965704).
  284. 2008-03-18 Bill Wohler <wohler@newt.com>
  285. * mh-e.el (mh-invisible-header-fields-internal): Add Accreditor,
  286. Seal-Send-Time.
  287. (mh-invisible-header-fields, mh-invisible-header-fields-default):
  288. Update URL to bug report for users to report ignored fields.
  289. 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
  290. * mh-xface.el (mh-uncompface, mh-picon-file-contents):
  291. Use set-buffer-multibyte...
  292. (mh-face-display-function, mh-x-image-display): ...rather than bind
  293. default-enable-multibyte-characters.
  294. 2008-02-24 Bill Wohler <wohler@newt.com>
  295. * mh-comp.el (mh-send-letter): Call split-string on mh-send-args
  296. when sending synchronously too.
  297. 2008-02-19 Bill Wohler <wohler@newt.com>
  298. * mh-comp.el (mh-annotate-msg):
  299. * mh-e.el (mh-invisible-header-fields-internal): Remove trailing
  300. whitespace.
  301. 2008-01-30 Bill Wohler <wohler@newt.com>
  302. * mh-mime.el (mh-mml-to-mime): Don't look up sender if From
  303. absent. Fixes "Wrong type argument: stringp, nil" error.
  304. 2007-12-02 Glenn Morris <rgm@gnu.org>
  305. * mh-mime.el (mail-strip-quoted-names): Autoload it.
  306. 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
  307. * mh-e.el (mh-xemacs-flag): Remove.
  308. (mh-min-colors-defined-flag):
  309. * mh-xface.el (mh-show-xface-function):
  310. * mh-utils.el (mh-colors-available-p):
  311. * mh-show.el (mh-show-mode):
  312. * mh-gnus.el (mh-gnus-local-map-property):
  313. * mh-folder.el (mh-folder-mode-map)
  314. (mh-remove-xemacs-horizontal-scrollbar, mh-folder-mode):
  315. * mh-comp.el (mh-insert-x-mailer): Replace uses of mh-xemacs-flag
  316. with (featurep 'xemacs).
  317. 2007-09-11 Bill Wohler <wohler@newt.com>
  318. * mh-e.el (Version, mh-version): Add +cvs to version.
  319. 2007-08-25 Stephen Gildea <gildea@stop.mail-abuse.org>
  320. * mh-e.el (mh-annotate-msg-hook): New variable.
  321. * mh-comp.el (mh-annotate-msg): Call new mh-annotate-msg-hook.
  322. (mh-annotate-list): New variable, for mh-annotate-msg-hook.
  323. 2007-08-21 Jeffrey C Honig <jch@honig.net>
  324. * mh-folder.el (mh-folder-message-menu, mh-folder-mode-map): Add
  325. folder mode support for mh-show-preferred-alternative (closes SF
  326. #1777321).
  327. * mh-show.el (mh-show-preferred-alternative)
  328. (mh-show-write-message-to-file, mh-show-message-menu)
  329. (mh-show-mode-map): Add mh-show-preferred-alternative (bound to
  330. ":") which will show the message's preferred alternative
  331. overriding the users configured preference. Useful for showing
  332. HTML when text content is lacking (closes SF #1777321).
  333. * mh-e.el:
  334. (mh-invisible-header-fields-internal): Exclude Fax and Phone. Put
  335. known exclusions as comments before the list and move parens to
  336. separate lines to aid in sorting (closes SF #1701231).
  337. * mh-mime.el (mm-decode-body): Remove explicit autoload of
  338. mh-alias-expand.
  339. * mh-alias.el (mh-alias-expand): Set up automatic autoload of
  340. mh-alias-expand.
  341. 2007-08-20 Jeffrey C Honig <jch@honig.net>
  342. * mh-mime.el (message-options-set): Add missing autoloads from my
  343. last change.
  344. * mh-comp.el (mh-forward): When forwarding with mml, messages are
  345. no longer included in reverse order (closes SF #1730393).
  346. * mh-mime.el (mh-mml-forward-message): Forward messages as inline
  347. attachments (closes SF #1378993).
  348. 2008-02-06 Richard Stallman <rms@gnu.org>
  349. * mh-seq.el (mh-make-seq, mh-seq-name): Use defsubst.
  350. * mh-acros.el (mh-do-in-gnu-emacs, mh-do-in-xemacs)
  351. (with-mh-folder-updating, mh-in-show-buffer)
  352. (mh-iterate-on-messages-in-region, mh-iterate-on-range):
  353. (mh-do-at-event-location): Add debug decls.
  354. (mh-seq-msgs): Use defsubst.
  355. 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
  356. * mh-e.el (mh-scan-format-file-check, mh-adaptive-cmd-note-flag-check):
  357. * mh-xface.el (mh-x-image-url-cache-canonicalize):
  358. Replace `legal' with `valid'.
  359. 2007-08-19 Jeffrey C Honig <jch@honig.net>
  360. * mh-e.el (mh-invisible-header-fields-internal): We want to show
  361. Comments: and hide Comment:, not the other way around.
  362. * mh-mime.el (mh-mml-to-mime): GPG requires e-mail addresses, not
  363. aliases. So resolve aliases before passing addresses to GPG/PGP
  364. (closes SF #649226).
  365. * mh-e.el (mh-invisible-header-fields-internal): Update with all
  366. the entries from
  367. http://people.dsv.su.se/~jpalme/ietf/mail-headers, plus some of my
  368. own. I added attributions to entries we already had that did not
  369. list an RFC.
  370. 2007-08-08 Glenn Morris <rgm@gnu.org>
  371. * mh-folder.el, mh-letter.el, mh-show.el: Replace `iff' in
  372. doc-strings and comments.
  373. 2007-07-25 Glenn Morris <rgm@gnu.org>
  374. * Relicense all FSF files to GPLv3 or later.
  375. 2007-07-11 Bill Wohler <wohler@newt.com>
  376. * mh-compat.el (mh-display-color-cells): Fix on XEmacs 21.5b28.
  377. Thanks to Henrique Martins for the help (closes SF #1749774).
  378. 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
  379. * mh-mime.el (mh-mh-directive-present-p):
  380. * mh-search.el (mh-index-group-by-folder): Fix typos in docstrings.
  381. 2006-11-14 Bill Wohler <wohler@newt.com>
  382. * mh-xface.el (mh-x-image-url-cache-canonicalize): Add `*' to
  383. reserved Windows filename characters (closes SF #1396499).
  384. 2006-11-13 Bill Wohler <wohler@newt.com>
  385. Release MH-E version 8.0.3.
  386. * mh-e.el (Version, mh-version): Update for release 8.0.3.
  387. * mh-e.el (mh-alias-local-users): Boolean docstrings should start
  388. with "Non-nil means". Perhaps this option should have a -flag
  389. appended.
  390. (mh-junk-background): Sync docstring with manual.
  391. * mh-junk.el (mh-spamassassin-blacklist, mh-bogofilter-blacklist)
  392. (mh-spamprobe-blacklist): Sync docstring with manual.
  393. 2006-11-11 Stephen Gildea <gildea@stop.mail-abuse.org>
  394. * mh-junk.el (mh-spamassassin-blacklist, mh-spamassassin-whitelist):
  395. Use mh-junk-background consistently in call-process calls.
  396. (mh-bogofilter-blacklist, mh-bogofilter-whitelist)
  397. (mh-spamprobe-blacklist, mh-spamprobe-whitelist):
  398. Use with-current-buffer so the right thing happens if
  399. mh-junk-background is t (closes SF #1594802).
  400. * mh-e.el (mh-junk-background): Document that On value is 0;
  401. t may be used for debugging.
  402. 2006-11-10 Andreas Schwab <schwab@suse.de>
  403. * mh-e.el (mh-draft-folder): Avoid starting sentence with "nil".
  404. 2006-11-10 Glenn Morris <rgm@gnu.org>
  405. * mh-e.el (mh-draft-folder): Doc fix (Nil -> nil).
  406. 2006-09-25 Stephen Gildea <gildea@stop.mail-abuse.org>
  407. * mh-junk.el (mh-spamassassin-whitelist): Add two missing
  408. quotation marks, so that the last two arguments of sa-learn
  409. are separated properly (closes SF #1565460).
  410. (mh-spamassassin-blacklist): In example .procmailrc, add
  411. PATH element to find mhparam on Debian.
  412. 2006-09-24 Stephen Gildea <gildea@stop.mail-abuse.org>
  413. * mh-comp.el (mh-send-args): Initialize to "" instead of nil
  414. so that we always have a valid string for split-string even if
  415. nothing is added in mh-send-letter (closes SF #1564742).
  416. 2006-07-03 Bill Wohler <wohler@newt.com>
  417. Release MH-E version 8.0.2.
  418. * mh-e.el (Version, mh-version): Update for release 8.0.2.
  419. 2006-07-03 Ted Phelps <phelps@gnusto.com> (tiny change)
  420. * mh-tool-bar.el (mh-tool-bar-define): Fix XEmacs' vector-list so
  421. it refers to the icons in mh-xemacs-icon-map instead of trying to
  422. declare the icons in situ. This allows mh-tool-bar.el to be
  423. compiled under XEmacs. Remove initial value for
  424. mh-tool-bar-folder-buttons, mh-tool-bar-show-buttons,
  425. mh-tool-bar-letter-buttons. The MH-E icons now appear in XEmacs.
  426. In mh-tool-bar-init, check for mh-xemacs-use-tool-bar-flag sooner.
  427. This allows MH-E to be used in XEmacs in a tty (closes SF #1506846).
  428. 2006-07-03 Bill Wohler <wohler@newt.com>
  429. * mh-e.el: Require mh-buffers and mh-compat before mh-xemacs now
  430. that mh-xemacs needs functions in mh-compat.
  431. 2006-06-29 Bill Wohler <wohler@newt.com>
  432. * mh-search.el (mh-search, mh-index-group-by-folder): Add "the" in
  433. loop construct to be consistent with other loops, and because
  434. edebug doesn't work without it.
  435. 2006-06-29 Ted Phelps <phelps@gnusto.com> (tiny change)
  436. * mh-search.el (mh-folder-exists-p): Strip + from folder to avoid
  437. redundant +s in regexp (closes SF #1514424).
  438. 2006-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
  439. * mh-mime.el (mh-mime-save-parts): Add -store option to
  440. mhn (closes SF #1513140).
  441. 2006-06-20 Bill Wohler <wohler@newt.com>
  442. Release MH-E version 8.0.1.
  443. * mh-e.el (Version, mh-version): Update for release 8.0.1.
  444. 2006-06-15 Bill Wohler <wohler@newt.com>
  445. * mh-search.el (mh-index-new-folder): Use -2 suffix instead of <2>
  446. suffix for folder names, as <> are illegal filename characters on
  447. Windows (closes SF #1507002).
  448. 2006-06-05 Jacob Morzinski <morzinski@MIT.EDU> (tiny change)
  449. * mh-comp.el (mh-send-uses-spost): New variable.
  450. (mh-send-letter): Do not use -msgid and -mime if
  451. mh-send-uses-spost is t (closes SF #1486726).
  452. 2006-06-02 Bill Wohler <wohler@newt.com>
  453. * mh-search.el (mh-folder-exists-p): Change test from an empty buffer,
  454. to one that contains the actual folder, since GNU mailutils' folder
  455. command displays output if the folder doesn't exist (closes SF
  456. #1499712).
  457. 2006-05-06 Bill Wohler <wohler@newt.com>
  458. Release MH-E version 8.0.
  459. * mh-e.el (Version, mh-version): Update for release 8.0.
  460. 2006-05-05 Bill Wohler <wohler@newt.com>
  461. * mh-e.el: Update commentary.
  462. 2006-04-28 Bill Wohler <wohler@newt.com>
  463. Release MH-E version 7.95.
  464. * mh-e.el (Version, mh-version): Update for release 7.95.
  465. 2006-04-26 Eric Ding <ericding@alum.mit.edu>
  466. * mh-e.el (mh-invisible-header-fields-internal): Add entry
  467. "X-Provags-ID:".
  468. 2006-04-25 Bill Wohler <wohler@newt.com>
  469. * mh-letter.el (mh-folder-expand-at-point): Fix folder completion.
  470. Folders returned by mh-folder-completion-function no longer need
  471. adornment (closes SF #1476270).
  472. 2006-04-21 Bill Wohler <wohler@newt.com>
  473. * mh-e.el (Version, mh-version): Add +cvs to version.
  474. 2006-04-21 Bill Wohler <wohler@newt.com>
  475. Release MH-E version 7.94.
  476. * mh-e.el (Version, mh-version): Update for release 7.94.
  477. 2006-04-21 Bill Wohler <wohler@newt.com>
  478. * mh-letter.el (mh-insert-letter): If a message number isn't
  479. given, throw an error rather than using a potentially incorrect
  480. message number (closes SF #1473729). In addition, use the cur
  481. message if mh-sent-from-msg is nil (when sending a message, in
  482. contrast to replying). Move conversion of int to string into
  483. interactive stanza so body can assume variables are of proper
  484. type.
  485. 2006-04-20 Bill Wohler <wohler@newt.com>
  486. * mh-tool-bar.el (image-load-path): Define to shush compiler.
  487. (mh-buffer-exists-p): Move inside mh-do-in-gnu-emacs since it
  488. isn't used outside of it.
  489. (mh-tool-bar-folder-buttons-init, mh-tool-bar-letter-buttons-init):
  490. Update load-path/image-load-path before setting buttons.
  491. This code used to be in mh-folder-mode/mh-letter-mode but this was
  492. the wrong place since mh-tool-bar-*-buttons-init can also be called
  493. when customizing the buttons.
  494. (mh-tool-bar-update): New function which updates tool-bar-map in
  495. all of the MH-E buffers after customizing the buttons (closes SF
  496. #1452718).
  497. (mh-tool-bar-folder-buttons-set, mh-tool-bar-letter-buttons-set):
  498. Call it (closes SF #1452718).
  499. * mh-folder.el (mh-folder-buttons-init-flag): Delete. Use
  500. mh-folder-tool-bar-map instead.
  501. (image-load-path): Delete. No longer used.
  502. (mh-folder-mode): Moved setting of image-load-path into
  503. mh-tool-bar-folder-buttons-init.
  504. * mh-letter.el (mh-letter-buttons-init-flag): Delete. Use
  505. mh-letter-tool-bar-map instead.
  506. (image-load-path): Delete. No longer used.
  507. (mh-letter-mode): Moved setting of image-load-path into
  508. mh-tool-bar-letter-buttons-init.
  509. * mh-seq.el (mh-narrow-to-seq, mh-widen): Use with-current-buffer
  510. instead of set-buffer.
  511. 2006-04-19 Bill Wohler <wohler@newt.com>
  512. * mh-tool-bar.el (mh-tool-bar-define): Fix enable-expr so that one
  513. can permanently disable a button (such as a separator) with nil.
  514. 2006-04-18 Bill Wohler <wohler@newt.com>
  515. * mh-e.el (defcustom-mh, defface-mh, defgroup-mh, mh-face-data)
  516. (mh-strip-package-version, mh-face-data, mh-inherit-face-flag)
  517. (mh-min-colors-defined-flag): Do not unbind these macros and
  518. variables. Nice idea, but too many nasty side-effects. These
  519. macros are needed by [Cc]ustom-make-dependencies when creating the
  520. MH-E customization groups in mh-cus-load.el. These disappeared
  521. when the macros above were introduced. Besides, if a developer
  522. were to try to show the help for a macro or variable they were
  523. looking at and got [No match] when they did so, that would be bad.
  524. 2006-04-17 Bill Wohler <wohler@newt.com>
  525. * mh-comp.el (mh-insert-x-mailer): Strip build number from
  526. version in X-Mailer field (closes SF #1466481).
  527. * mh-acros.el (mh-defun-compat): Rename to defun-mh in order that
  528. variables and functions with the same name are found correctly by
  529. find-func (invoked by clicking on the filename link in the *Help*
  530. buffer).
  531. (mh-defmacro-compat): Rename to defmacro-mh. Ditto.
  532. * mh-e.el (mh-defgroup): Rename to defgroup-mh. Ditto.
  533. (mh-defcustom): Rename to defcustom-mh. Ditto.
  534. (mh-defface): Rename to defface-mh. Ditto.
  535. (mh-font-lock-add-keywords): Make changes according to these
  536. renamings.
  537. * mh-e.el, mh-compat.el, mh-gnus.el: Use the new names (closes SF
  538. #1472029).
  539. * mh-utils.el (mh-sub-folders-actual): Mention that folder must
  540. have been processed by mh-normalize-folder-name.
  541. (mh-folder-completion-function): Handle completion of folders with
  542. absolute names. Also, when flag is t, display complete folder name
  543. to provide proper highlighting in Emacs 22 now that
  544. minibuffer-completing-file-name is nil (closes SF #1470518).
  545. (mh-folder-completing-read): No longer set
  546. minibuffer-completing-file-name to t. This was causing "Can't set
  547. current directory errors" when browsing absolute file names.
  548. Another benefit of this change is that SPC can be used for
  549. completion again (closes SF #1470518).
  550. 2006-04-15 Bill Wohler <wohler@newt.com>
  551. * mh-compat.el (mh-font-lock-add-keywords): Fix typo in docstring.
  552. 2006-04-14 Bill Wohler <wohler@newt.com>
  553. * mh-funcs.el (view-exit-action): No need to wrap defvar with
  554. eval-when-compile when shushing compiler.
  555. * mh-mime.el (mh-identity-pgg-default-user-id): Ditto.
  556. * mh-seq.el (view-exit-action): Ditto.
  557. * mh-show.el (font-lock-auto-fontify): Ditto.
  558. * mh-utils.el (mh-speed-flists-cache): Ditto.
  559. * mh-acros.el (struct, x, y): No need to wrap defvar with
  560. eval-when-compile when shushing compiler, even when
  561. mh-do-in-xemacs or another construct is used.
  562. * mh-comp.el (sendmail-coding-system): Ditto.
  563. * mh-e.el (mark-active): Ditto.
  564. * mh-folder.el (desktop-save-buffer, font-lock-auto-fontify)
  565. (image-load-path, font-lock-defaults): Ditto.
  566. * mh-letter.el (image-load-path, font-lock-defaults): Ditto.
  567. * mh-mime.el (dots, type, ov)
  568. (mm-verify-function-alist, mm-decrypt-function-alist)
  569. (pressed-details): Ditto.
  570. * mh-search.el (pick-folder, mh-do-in-xemacs)
  571. (mh-mairix-folder, mh-flists-search-folders)
  572. (which-func-mode, mh-speed-flists-inhibit-flag): Ditto.
  573. * mh-seq.el (tool-bar-mode): Ditto.
  574. * mh-utils.el (completion-root-regexp)
  575. (minibuffer-completing-file-name): Ditto.
  576. * mh-xface.el (default-enable-multibyte-characters): Ditto.
  577. * mh-compat.el (mh-font-lock-add-keywords): New alias for
  578. font-lock-add-keywords. Returns nil on XEmacs.
  579. * mh-e.el: Add MH-E function and variable keywords such as
  580. mh-defun-compat and mh-defcustom to font-lock-keywords.
  581. 2006-04-13 Bill Wohler <wohler@newt.com>
  582. * mh-e.el (customize-package-emacs-version-alist)
  583. (mh-e, mh-alias, mh-folder, mh-folder-selection)
  584. (mh-identity, mh-inc, mh-junk, mh-letter, mh-ranges)
  585. (mh-scan-line-formats, mh-search, mh-sending-mail)
  586. (mh-sequences, mh-show, mh-speedbar, mh-thread, mh-tool-bar)
  587. (mh-hooks, mh-faces, mh-alias-completion-ignore-case-flag)
  588. (mh-alias-expand-aliases-flag, mh-alias-flash-on-comma)
  589. (mh-alias-insert-file, mh-alias-insertion-location)
  590. (mh-alias-local-users, mh-alias-local-users-prefix)
  591. (mh-alias-passwd-gecos-comma-separator-flag)
  592. (mh-new-messages-folders, mh-ticked-messages-folders)
  593. (mh-large-folder, mh-recenter-summary-flag)
  594. (mh-recursive-folders-flag, mh-sortm-args)
  595. (mh-default-folder-for-message-function)
  596. (mh-default-folder-list, mh-default-folder-must-exist-flag)
  597. (mh-default-folder-prefix, mh-identity-list)
  598. (mh-auto-fields-list, mh-auto-fields-prompt-flag)
  599. (mh-identity-default, mh-identity-handlers, mh-inc-prog)
  600. (mh-inc-spool-list, mh-junk-background, mh-junk-disposition)
  601. (mh-junk-program, mh-compose-insertion)
  602. (mh-compose-skipped-header-fields)
  603. (mh-compose-space-does-completion-flag)
  604. (mh-delete-yanked-msg-window-flag)
  605. (mh-extract-from-attribution-verb, mh-ins-buf-prefix)
  606. (mh-letter-complete-function, mh-letter-fill-column)
  607. (mh-mml-method-default, mh-signature-file-name)
  608. (mh-signature-separator-flag, mh-x-face-file)
  609. (mh-yank-behavior, mh-interpret-number-as-range-flag)
  610. (mh-adaptive-cmd-note-flag, mh-scan-format-file, mh-scan-prog)
  611. (mh-search-program, mh-compose-forward-as-mime-flag)
  612. (mh-compose-letter-function, mh-compose-prompt-flag)
  613. (mh-forward-subject-format, mh-insert-x-mailer-flag)
  614. (mh-redist-full-contents-flag, mh-reply-default-reply-to)
  615. (mh-reply-show-message-flag)
  616. (mh-refile-preserves-sequences-flag, mh-tick-seq)
  617. (mh-update-sequences-after-mh-show-flag)
  618. (mh-bury-show-buffer-flag, mh-clean-message-header-flag)
  619. (mh-decode-mime-flag)
  620. (mh-display-buttons-for-alternatives-flag)
  621. (mh-display-buttons-for-inline-parts-flag)
  622. (mh-do-not-confirm-flag, mh-fetch-x-image-url)
  623. (mh-graphical-smileys-flag, mh-graphical-emphasis-flag)
  624. (mh-highlight-citation-style, mh-invisible-header-fields)
  625. (mh-invisible-header-fields-default, mh-lpr-command-format)
  626. (mh-max-inline-image-height, mh-max-inline-image-width)
  627. (mh-mhl-format-file, mh-mime-save-parts-default-directory)
  628. (mh-print-background-flag, mh-show-maximum-size)
  629. (mh-show-use-xface-flag, mh-store-default-directory)
  630. (mh-summary-height, mh-speed-update-interval)
  631. (mh-show-threads-flag, mh-tool-bar-search-function)
  632. (mh-defcustom, mh-after-commands-processed-hook)
  633. (mh-alias-reloaded-hook, mh-before-commands-processed-hook)
  634. (mh-before-quit-hook, mh-before-send-letter-hook)
  635. (mh-delete-msg-hook, mh-find-path-hook, mh-folder-mode-hook)
  636. (mh-forward-hook, mh-inc-folder-hook, mh-insert-signature-hook)
  637. (mh-kill-folder-suppress-prompt-hooks, mh-letter-mode-hook)
  638. (mh-mh-to-mime-hook, mh-search-mode-hook, mh-quit-hook)
  639. (mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
  640. (mh-unseen-updated-hook, mh-folder-address, mh-folder-body)
  641. (mh-folder-cur-msg-number, mh-folder-date, mh-folder-deleted)
  642. (mh-folder-followup, mh-folder-msg-number, mh-folder-refiled)
  643. (mh-folder-sent-to-me-hint, mh-folder-sent-to-me-sender)
  644. (mh-folder-subject, mh-folder-tick, mh-folder-to)
  645. (mh-letter-header-field, mh-search-folder, mh-show-cc)
  646. (mh-show-date, mh-show-from, mh-show-header, mh-show-pgg-bad)
  647. (mh-show-pgg-good, mh-show-pgg-unknown, mh-show-signature)
  648. (mh-show-subject, mh-show-to, mh-show-xface)
  649. (mh-speedbar-folder, mh-speedbar-folder-with-unseen-messages)
  650. (mh-speedbar-selected-folder)
  651. (mh-speedbar-selected-folder-with-unseen-messages): Use dotted
  652. notation in :package-version keyword.
  653. 2006-04-07 Bill Wohler <wohler@newt.com>
  654. * mh-e.el (mh-path, mh-variant): Define with mh-defcustom and add
  655. :package-version keyword.
  656. 2006-03-31 Bill Wohler <wohler@newt.com>
  657. * mh-e.el (mh-strip-package-version): Move before use to avoid
  658. compiler error. Make macro, also to avoid compiler error.
  659. (mh-defface-compat): Incorporate body into mh-face-data and
  660. delete.
  661. 2006-03-30 Bill Wohler <wohler@newt.com>
  662. * mh-e.el (mh-defcustom, mh-defface, mh-defgroup): Macros to
  663. remove new :package-version keyword in older settings.
  664. (customize-package-emacs-version-alist): Add MH-E version to Emacs
  665. version mappings.
  666. (mh-e, mh-alias, mh-folder, mh-folder-selection)
  667. (mh-identity, mh-inc, mh-junk, mh-letter, mh-ranges)
  668. (mh-scan-line-formats, mh-search, mh-sending-mail)
  669. (mh-sequences, mh-show, mh-speedbar, mh-thread, mh-tool-bar)
  670. (mh-hooks, mh-faces): Add :package-version keyword to these
  671. groups (closes SF #1452724).
  672. (mh-alias-completion-ignore-case-flag)
  673. (mh-alias-expand-aliases-flag, mh-alias-flash-on-comma)
  674. (mh-alias-insert-file, mh-alias-insertion-location)
  675. (mh-alias-local-users, mh-alias-local-users-prefix)
  676. (mh-alias-passwd-gecos-comma-separator-flag)
  677. (mh-new-messages-folders, mh-ticked-messages-folders)
  678. (mh-large-folder, mh-recenter-summary-flag)
  679. (mh-recursive-folders-flag, mh-sortm-args)
  680. (mh-default-folder-for-message-function)
  681. (mh-default-folder-list, mh-default-folder-must-exist-flag)
  682. (mh-default-folder-prefix, mh-identity-list)
  683. (mh-auto-fields-list, mh-auto-fields-prompt-flag)
  684. (mh-identity-default, mh-identity-handlers, mh-inc-prog)
  685. (mh-inc-spool-list, mh-junk-background, mh-junk-disposition)
  686. (mh-junk-program, mh-compose-insertion)
  687. (mh-compose-skipped-header-fields)
  688. (mh-compose-space-does-completion-flag)
  689. (mh-delete-yanked-msg-window-flag)
  690. (mh-extract-from-attribution-verb, mh-ins-buf-prefix)
  691. (mh-letter-complete-function, mh-letter-fill-column)
  692. (mh-mml-method-default, mh-signature-file-name)
  693. (mh-signature-separator-flag, mh-x-face-file)
  694. (mh-yank-behavior, mh-interpret-number-as-range-flag)
  695. (mh-adaptive-cmd-note-flag, mh-scan-format-file, mh-scan-prog)
  696. (mh-search-program, mh-compose-forward-as-mime-flag)
  697. (mh-compose-letter-function, mh-compose-prompt-flag)
  698. (mh-forward-subject-format, mh-insert-x-mailer-flag)
  699. (mh-redist-full-contents-flag, mh-reply-default-reply-to)
  700. (mh-reply-show-message-flag)
  701. (mh-refile-preserves-sequences-flag, mh-tick-seq)
  702. (mh-update-sequences-after-mh-show-flag)
  703. (mh-bury-show-buffer-flag, mh-clean-message-header-flag)
  704. (mh-decode-mime-flag)
  705. (mh-display-buttons-for-alternatives-flag)
  706. (mh-display-buttons-for-inline-parts-flag)
  707. (mh-do-not-confirm-flag, mh-fetch-x-image-url)
  708. (mh-graphical-smileys-flag, mh-graphical-emphasis-flag)
  709. (mh-highlight-citation-style, mh-invisible-header-fields)
  710. (mh-invisible-header-fields-default, mh-lpr-command-format)
  711. (mh-max-inline-image-height, mh-max-inline-image-width)
  712. (mh-mhl-format-file, mh-mime-save-parts-default-directory)
  713. (mh-print-background-flag, mh-show-maximum-size)
  714. (mh-show-use-xface-flag, mh-store-default-directory)
  715. (mh-summary-height, mh-speed-update-interval)
  716. (mh-show-threads-flag, mh-tool-bar-search-function): Add
  717. :package-version keyword to these options (closes SF #1452724).
  718. (mh-after-commands-processed-hook)
  719. (mh-alias-reloaded-hook, mh-before-commands-processed-hook)
  720. (mh-before-quit-hook, mh-before-send-letter-hook)
  721. (mh-delete-msg-hook, mh-find-path-hook, mh-folder-mode-hook)
  722. (mh-forward-hook, mh-inc-folder-hook)
  723. (mh-insert-signature-hook)
  724. (mh-kill-folder-suppress-prompt-hooks, mh-letter-mode-hook)
  725. (mh-mh-to-mime-hook, mh-search-mode-hook, mh-quit-hook)
  726. (mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
  727. (mh-unseen-updated-hook): Add :package-version keyword to these
  728. hooks (closes SF #1452724).
  729. (mh-min-colors-defined-flag)
  730. (mh-folder-address, mh-folder-body, mh-folder-cur-msg-number)
  731. (mh-folder-date, mh-folder-deleted, mh-folder-followup)
  732. (mh-folder-msg-number, mh-folder-refiled)
  733. (mh-folder-sent-to-me-hint, mh-folder-sent-to-me-sender)
  734. (mh-folder-subject, mh-folder-tick, mh-folder-to)
  735. (mh-letter-header-field, mh-search-folder, mh-show-cc)
  736. (mh-show-date, mh-show-from, mh-show-header, mh-show-pgg-bad)
  737. (mh-show-pgg-good, mh-show-pgg-unknown, mh-show-signature)
  738. (mh-show-subject, mh-show-to, mh-show-xface)
  739. (mh-speedbar-folder, mh-speedbar-folder-with-unseen-messages)
  740. (mh-speedbar-selected-folder)
  741. (mh-speedbar-selected-folder-with-unseen-messages): : Add
  742. :package-version keyword to these faces (closes SF #1452724).
  743. * mh-tool-bar.el (mh-tool-bar-define): Added commented-out
  744. :package-version keywords (closes SF #1452724).
  745. 2006-03-28 Bill Wohler <wohler@newt.com>
  746. * mh-tool-bar.el: Use clipboard-kill-region,
  747. clipboard-kill-ring-save, and clipboard-yank instead of undo,
  748. kill-region, and menu-bar-kill-ring-save respectively. In
  749. MH-Letter mode, move save-buffer and mh-fully-kill-draft icons in
  750. front of mh-compose-insertion to be consistent with other mailers,
  751. such as Evolution. In MH-Folder mode, move vanilla reply icon to
  752. the left of the other reply icons. Use mail/inbox icon instead of
  753. mail, next-page instead of page-down, delete instead of close,
  754. mail/move instead of mail/refile, data-save instead of execute,
  755. mail/flag-for-followup instead of highlight, contact instead of
  756. mail/alias, open instead of fld-open, zoom-out instead of widen.
  757. * mh-folder.el (mh-execute-commands, mh-rescan-folder):
  758. * mh-funcs.el (mh-pack-folder): Sync docstrings with manual.
  759. 2006-03-27 Eric Ding <ericding@alum.mit.edu>
  760. * mh-e.el (mh-invisible-header-fields-internal): Add entries
  761. "X-AOL-IP:" and "X-MB-Message-" (AOL WebMail).
  762. 2006-03-19 Bill Wohler <wohler@newt.com>
  763. * mh-comp.el (mh-reply): Sync docstring with manual.
  764. * mh-compat.el (mh-image-load-path-for-library): Shorten first line in
  765. docstring.
  766. 2006-03-17 Bill Wohler <wohler@newt.com>
  767. * mh-compat.el (mh-image-load-path-for-library): Minor docstring fix.
  768. 2006-03-16 Bill Wohler <wohler@newt.com>
  769. * mh-comp.el (mh-send-letter): Use split-string to break up
  770. mh-send-args (closes SF #1448604).
  771. (mh-compose-and-send-mail): Use run-hook-with-args for
  772. mh-compose-letter-function.
  773. * mh-e.el (mh-list-to-string-1): Use dolist.
  774. * mh-compat.el (mh-image-load-path-for-library): Prefer user's images.
  775. 2006-03-15 Bill Wohler <wohler@newt.com>
  776. * mh-compat.el (mh-image-load-path-for-library): Fix example by
  777. not recommending that one binds image-load-path. Just defvar it to
  778. placate compiler and only use it if previously defined.
  779. * mh-e.el (image-load-path): Don't bind!
  780. * mh-folder.el (mh-folder-mode): Only use image-load-path if
  781. previously defined.
  782. * mh-letter.el (mh-letter-mode): Ditto.
  783. * mh-utils.el (mh-logo-display): Ditto.
  784. 2006-03-14 Bill Wohler <wohler@newt.com>
  785. * mh-compat.el (mh-image-load-path-for-library): Incorporate
  786. changes from image-load-path-for-library, which are:
  787. (image-load-path-for-library): Pass value of path rather than
  788. symbol. Always return list of directories. Guarantee that image
  789. directory comes first.
  790. * mh-e.el (image-load-path): Define on those Emacsen that lack it
  791. to avoid compile and run-time errors.
  792. * mh-folder.el (mh-folder-mode): Use new idiom for setting
  793. image-load-path.
  794. * mh-letter.el (mh-letter-mode): Ditto.
  795. * mh-utils.el (mh-logo-display): Ditto.
  796. 2006-03-12 Bill Wohler <wohler@newt.com>
  797. * mh-utils.el (mh-folder-list): Fix docstring (closes SF
  798. #1448498).
  799. 2006-03-10 Bill Wohler <wohler@newt.com>
  800. * mh-compat.el (mh-replace-regexp-in-string): Pass the literal
  801. flag to replace-in-string. This was badly needed by
  802. mh-quote-pick-expr in order to properly quote subjects when using
  803. / s on XEmacs (closes SF #1447598).
  804. (mh-image-load-path-for-library): Merged changes from Reiner. Add
  805. no-error argument. If path t, just return directory.
  806. * mh-e.el (mh-profile-component): Drop `s' from mhparam
  807. -components for Mailutils compatibility (closes SF #1446985).
  808. 2006-03-06 Bill Wohler <wohler@newt.com>
  809. * mh-e.el (Version, mh-version): Add +cvs to version.
  810. 2006-03-05 Satyaki Das <satyaki@theforce.stanford.edu>
  811. * mh-search.el (mh-index-update-single-msg): Fix a bug in the
  812. handling of duplicate messages. The test in cond was too strong
  813. and wasn't catching the case where origin-map was nil.
  814. 2006-03-05 Bill Wohler <wohler@newt.com>
  815. Release MH-E version 7.93.
  816. * mh-e.el (Version, mh-version): Update for release 7.93.
  817. 2006-03-05 Bill Wohler <wohler@newt.com>
  818. * mh-folder.el (mh-folder-mode): Drop 'load-path argument when
  819. calling mh-image-load-path-for-library since this is the default.
  820. * mh-letter.el (mh-letter-mode): Ditto.
  821. * mh-utils.el (mh-logo-display): Ditto.
  822. 2006-03-04 Bill Wohler <wohler@newt.com>
  823. * mh-compat.el (mh-image-load-path-for-library): Move here from
  824. mh-utils.el and wrap with mh-defun-compat since this function will
  825. be soon added to image.el.
  826. * mh-utils.el (mh-image-load-path-for-library): Move to mh-compat.el.
  827. (mh-normalize-folder-name): Add return-nil-if-folder-empty
  828. argument which is useful when calling mh-normalize-folder-name to
  829. process the folder argument for the folders command.
  830. (mh-sub-folders): Use new flag to mh-normalize-folder-name to make
  831. this function more robust. It could too easily list the folders in /.
  832. (mh-folder-list): Fix a couple of problems pointed out by Thomas
  833. Baumann. Set folder to nil if empty. Don't append "/" if folder nil.
  834. 2006-03-03 Bill Wohler <wohler@newt.com>
  835. * mh-folder.el (mh-folder-mode): Rename mh-image-load-path to
  836. mh-image-load-path-for-library.
  837. * mh-letter.el (mh-letter-mode): Rename mh-image-load-path to
  838. mh-image-load-path-for-library.
  839. * mh-utils.el (mh-image-load-path): Rename to
  840. mh-image-load-path-for-library. Add example to docstring. Rename
  841. local variable mh-image-directory to image-directory. Move error
  842. checks to default case in cond and simplify.
  843. * mh-comp.el (mh-send-letter, mh-insert-auto-fields): Sync
  844. docstrings with manual.
  845. 2006-03-02 Bill Wohler <wohler@newt.com>
  846. * mh-folder.el (mh-tool-bar-init): Autoload.
  847. (mh-folder-mode): Call mh-tool-bar-init conditionally in XEmacs.
  848. Set scoped variables image-load-path and load-path with updated
  849. mh-image-load-path before calling mh-tool-bar-folder-buttons-init.
  850. * mh-letter.el (mh-tool-bar-init): Autoload.
  851. (mh-letter-mode): Call mh-tool-bar-init conditionally in XEmacs.
  852. Set scoped variables image-load-path and load-path with updated
  853. mh-image-load-path before calling mh-tool-bar-letter-buttons-init.
  854. * mh-show.el (mh-tool-bar-init): Autoload.
  855. (mh-show-mode): Perform tool bar stuff conditionally in XEmacs and
  856. GNU Emacs.
  857. * mh-tool-bar.el (mh-tool-bar-define): Don't quote stuff in error
  858. messages per conventions.
  859. (mh-tool-bar-folder-buttons-init)
  860. (mh-tool-bar-letter-buttons-init): Don't call mh-image-load-path.
  861. (mh-tool-bar-define call): Format.
  862. * mh-utils.el (mh-image-directory)
  863. (mh-image-load-path-called-flag): Delete.
  864. (mh-image-load-path): Incorporate changes from Gnus team. Biggest
  865. changes are that it no longer uses/sets mh-image-directory or
  866. mh-image-load-path-called-flag, and returns the updated path
  867. rather than change it.
  868. (mh-logo-display): Change usage of mh-image-load-path.
  869. 2006-02-28 Bill Wohler <wohler@newt.com>
  870. * mh-limit.el (mh-narrow-to-cc, mh-narrow-to-from)
  871. (mh-narrow-to-subject, mh-narrow-to-to): Fix inability to narrow
  872. to subjects with special characters by quoting regular expression
  873. characters in pick expression derived from existing subjects and
  874. other fields (closes SF #1432548).
  875. (mh-narrow-to-subject): Remove Re: string from subject so that
  876. pick can find originating message (closes SF #1438369).
  877. * mh-utils.el (mh-image-load-path): Rename variable to
  878. mh-image-directory.
  879. (mh-image-load-path): Access mh-image-directory instead of
  880. mh-image-load-path.
  881. (mh-folder-list): Fix problem with passing in a folder and getting
  882. nothing back. Fix problem with passing in empty string and getting
  883. the entire filesystem (or infinite loop). Don't append slash to
  884. folder. These fixes fix problems observed with the pick search.
  885. Thanks to Thomas Baumann for the help (closes SF #1435381).
  886. (mh-pick-regexp-chars, mh-quote-pick-expr): New variable and
  887. function for quoting pick regular expression characters (closes SF
  888. #1432548).
  889. 2006-02-27 Bill Wohler <wohler@newt.com>
  890. * mh-e.el (mh-default-folder-for-message-function): Sync docstring
  891. with manual.
  892. * mh-mime.el (mh-minibuffer-read-type): Delete comment in
  893. docstring about obsolete variable mh-mime-content-types.
  894. * mh-e.el (mh-variant): Sync docstring with manual.
  895. (cus-face): Require as it is needed by mh-inherit-face-flag.
  896. * mh-compat.el (mh-display-color-cells): Return 2 if
  897. device-color-cells returns nil (closes SF #1436924).
  898. * mh-e.el (mh-compiling-flag): Delete. No longer needed by
  899. mh-display-color-cells.
  900. 2006-02-21 Eric Ding <ericding@alum.mit.edu>
  901. * mh-e.el (mh-invisible-header-fields-internal): Add entry
  902. "X-Sasl-enc:".
  903. 2006-02-20 Eric Ding <ericding@alum.mit.edu>
  904. * mh-e.el (mh-invisible-header-fields-internal): Add entries
  905. "X-Authenticated-Sender:", "X-Barracuda-", "X-EFL-Spamscore",
  906. "X-IronPort-AV:", "X-Mail-from:", "X-Mailman-Approved-At:",
  907. "X-Resolved-to:", and "X-SA-Exim". Fixed "X-Bugzilla-" and
  908. "X-Roving-" by removing unnecessary "*" at end.
  909. 2006-02-19 Bill Wohler <wohler@newt.com>
  910. * mh-alias.el (mh-address-mail-regexp)
  911. (mh-goto-address-find-address-at-point): Delete copies from
  912. goto-addr.el.
  913. (mh-alias-suggest-alias): Use goto-address-mail-regexp instead of
  914. mh-address-mail-regexp.
  915. (mh-alias-add-address-under-point): Use
  916. goto-address-find-address-at-point instead of
  917. mh-goto-address-find-address-at-point.
  918. * mh-e.el (mh-show-use-goto-addr-flag): Delete.
  919. * mh-show.el (mh-show-mode): Mention goto-address-highlight-p in
  920. docstring.
  921. (mh-show-addr): Call goto-address unconditionally. User should use
  922. goto-address-highlight-p instead of mh-show-use-goto-addr-flag.
  923. 2006-02-18 Bill Wohler <wohler@newt.com>
  924. * mh-e.el (Version, mh-version): Add +cvs to version.
  925. 2006-02-18 Bill Wohler <wohler@newt.com>
  926. Release MH-E version 7.92.
  927. * mh-e.el (Version, mh-version): Update for release 7.92.
  928. 2006-02-17 Bill Wohler <wohler@newt.com>
  929. * mh-e.el (mh-folder-msg-number): Use purple on low-color, light
  930. backgrounds per Mark's suggestion.
  931. * mh-utils.el (mh-image-load-path): Fix problem that images on
  932. load-path or image-load-path would win over relative paths (newer
  933. MH-E or Emacs distribution).
  934. 2006-02-16 Bill Wohler <wohler@newt.com>
  935. * mh-e.el (mh-inherit-face-flag): New variable. Non-nil means that
  936. the defface :inherit keyword is available.
  937. (mh-face-data): New variable (contains all face specs) and
  938. function (accessor).
  939. (mh-folder-address, mh-folder-body, mh-folder-cur-msg-number)
  940. (mh-folder-date, mh-folder-deleted, mh-folder-followup)
  941. (mh-folder-msg-number, mh-folder-refiled)
  942. (mh-folder-sent-to-me-hint, mh-folder-sent-to-me-sender)
  943. (mh-folder-subject, mh-folder-tick, mh-folder-to)
  944. (mh-search-folder, mh-letter-header-field, mh-show-cc)
  945. (mh-show-date, mh-show-from)
  946. (mh-show-header, mh-show-pgg-bad, mh-show-pgg-good)
  947. (mh-show-pgg-unknown, mh-show-signature, mh-show-subject)
  948. (mh-show-to, mh-show-xface, mh-speedbar-folder)
  949. (mh-speedbar-folder-with-unseen-messages)
  950. (mh-speedbar-selected-folder)
  951. (mh-speedbar-selected-folder-with-unseen-messages):
  952. Use mh-face-data.
  953. * mh-utils.el (mh-image-load-path): The variables image-load-path
  954. or load-path would not get updated if user set mh-image-load-path.
  955. Moved tests and add-to-list calls outside of cond so they are
  956. applied consistently, even if they are redundant in some
  957. circumstances. Efficiency isn't a concern here. Made error
  958. messages more user-friendly.
  959. 2006-02-15 Peter S Galbraith <psg@debian.org>
  960. * mh-compat.el (mh-image-search-load-path): Compatibility code.
  961. Emacs 21 and XEmacs don't have `image-search-load-path'.
  962. * mh-utils.el (mh-image-load-path): Don't bail out on error if the
  963. images are already found.
  964. 2006-02-10 Bill Wohler <wohler@newt.com>
  965. * mh-search.el (mh-search): Wrap code in (block mh-search ...)
  966. rather than use defun*. XEmacs cannot create a proper autoload for
  967. a defun*.
  968. 2006-02-09 Bill Wohler <wohler@newt.com>
  969. * mh-utils.el (mh-folder-list): Don't replace "/*$" with "/" since
  970. that causes an infinite loop on XEmacs.
  971. * mh-compat.el(mh-replace-regexp-in-string): Add missing regexp
  972. argument.
  973. 2006-02-08 Peter S Galbraith <psg@debian.org>
  974. * mh-e.el (mh-invisible-header-fields-internal): Added entries
  975. "X-BrightmailFiltered:", "X-Brightmail-Tracker:" and "X-Hashcash".
  976. 2006-02-04 Bill Wohler <wohler@newt.com>
  977. * mh-e.el (mh-inc-spool-list): Update example for Emacs 22 which
  978. has an emacsclient command that supports --eval. I had read that
  979. gnudoit was deprecated in favor of gnuclient anyway.
  980. 2006-02-04 Eric Ding <ericding@alum.mit.edu>
  981. * mh-mime.el (mh-file-mime-type-substitutions): Add entries to
  982. handle OpenOffice documents.
  983. 2006-02-03 Bill Wohler <wohler@newt.com>
  984. * mh-e.el (Version, mh-version): Add +cvs to version.
  985. 2006-02-03 Bill Wohler <wohler@newt.com>
  986. Release MH-E version 7.91.
  987. * mh-e.el (Version, mh-version): Update for release 7.91.
  988. 2006-02-03 Bill Wohler <wohler@newt.com>
  989. * mh-utils.el (mh-image-load-path, mh-image-load-path-called-flag)
  990. (mh-image-load-path): Checkdoc fix. Docstring edits. Reduce scope
  991. of local variable mh-library-name.
  992. * mh-e.el (mh-folder-msg-number, mh-folder-refiled, mh-folder-to)
  993. (mh-show-cc, mh-show-date, mh-show-header): Replace (min-colors
  994. 88) with (min-colors 64) in face specifications so that MH-E still
  995. looks good on systems with fewer colors (such as Eric Ding's).
  996. 2006-02-03 Peter S Galbraith <psg@debian.org>
  997. * mh-utils.el (mh-image-load-path): New variable to optionally
  998. hold the directory where MH-E images are stored. If nil, then
  999. the function `mh-image-load-path' will find it. This variable
  1000. will be used for Debian packaging.
  1001. (mh-image-load-path function): Use variable `mh-image-load-path'
  1002. if non-nil and exists.
  1003. 2006-02-03 Mark D. Baushke <mdb@gnu.org>
  1004. * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar
  1005. for GNU Emacs or XEmacs to avoid void-variable tool-bar-map lisp
  1006. errors if describe-bindings is called before tool-bar-mode is used.
  1007. 2006-02-03 Peter S Galbraith <psg@debian.org>
  1008. * mh-compat.el (mh-url-unreserved-chars): Fix typo from
  1009. `mh-url-unresrved-chars'.
  1010. 2006-02-02 Bill Wohler <wohler@newt.com>
  1011. * mh-e.el (Version, mh-version): Add +cvs to version.
  1012. 2006-02-02 Bill Wohler <wohler@newt.com>
  1013. Release MH-E version 7.90.
  1014. * mh-e.el (Version, mh-version): Update for release 7.90.
  1015. 2006-02-01 Bill Wohler <wohler@newt.com>
  1016. * mh-search.el (which-func-mode): Shush compiler on Emacs 21 too.
  1017. * mh-alias.el (mh-alias-gecos-name): Use
  1018. mh-replace-regexp-in-string instead of replace-regexp-in-string.
  1019. (crm, multi-prompt): Use mh-require instead of require.
  1020. (mh-goto-address-find-address-at-point): Use
  1021. mh-line-beginning-position and mh-line-end-position instead of
  1022. line-beginning-position and line-end-position. Use
  1023. mh-match-string-no-properties instead of
  1024. match-string-no-properties.
  1025. * mh-comp.el (mh-modify-header-field): Use
  1026. mh-line-beginning-position and mh-line-end-position instead of
  1027. line-beginning-position and line-end-position.
  1028. * mh-compat.el (mailabbrev): Use mh-require instead of require.
  1029. (mh-assoc-string, mh-display-completion-list, mh-face-foreground)
  1030. (mh-face-background): Make docstring consistent.
  1031. (mh-require, mh-cancel-timer, mh-display-color-cells)
  1032. (mh-line-beginning-position, mh-line-end-position)
  1033. (mh-match-string-no-properties, mh-replace-regexp-in-string)
  1034. (mh-view-mode-enter): Move definition here from mh-xemacs.el and
  1035. add mh- prefix since compatibility functions should have our
  1036. package prefix (mh-) by Emacs convention and to avoid messing up
  1037. checks for the same functions in other packages.
  1038. * mh-e.el (mh-compiling-flag): Move mh-xemacs-compiling-flag here
  1039. from mh-xemacs.el and rename.
  1040. (mh-xargs): Use mh-line-beginning-position and
  1041. mh-line-end-position instead of line-beginning-position and
  1042. line-end-position.
  1043. (mh-defface-compat): Use mh-display-color-cells instead of
  1044. display-color-cells.
  1045. * mh-folder.el (which-func): Use mh-require instead of require.
  1046. * mh-funcs.el (mh-list-folders): Use mh-view-mode-enter instead of
  1047. view-mode-enter.
  1048. * mh-gnus.el (gnus-util, mm-bodies, mm-decode, mm-view, mml):
  1049. Use mh-require instead of require.
  1050. * mh-letter.el (mh-letter-header-end, mh-letter-mode)
  1051. (mh-letter-next-header-field): Use mh-line-beginning-position and
  1052. mh-line-end-position instead of line-beginning-position and
  1053. line-end-position.
  1054. * mh-limit.el (mh-subject-to-sequence-unthreaded): Use
  1055. mh-match-string-no-properties instead of
  1056. match-string-no-properties.
  1057. (mh-narrow-to-header-field): Use mh-line-beginning-position and
  1058. mh-line-end-position instead of line-beginning-position and
  1059. line-end-position.
  1060. * mh-mime.el (mh-mime-inline-part, mh-mm-display-part)
  1061. (mh-mh-quote-unescaped-sharp, mh-mh-directive-present-p): Use
  1062. mh-line-beginning-position and mh-line-end-position instead of
  1063. line-beginning-position and line-end-position.
  1064. * mh-search.el (which-func): Use mh-require instead of require.
  1065. (mh-make-pick-template, mh-index-visit-folder)
  1066. (mh-pick-parse-search-buffer, mh-swish-next-result)
  1067. (mh-mairix-next-result, mh-namazu-next-result)
  1068. (mh-pick-next-result, mh-grep-next-result)
  1069. (mh-index-create-imenu-index, mh-index-match-checksum)
  1070. (mh-md5sum-parser, mh-openssl-parser, mh-index-update-maps): Use
  1071. mh-line-beginning-position and mh-line-end-position instead of
  1072. line-beginning-position and line-end-position.
  1073. * mh-seq.el (mh-list-sequences): Use mh-view-mode-enter instead of
  1074. view-mode-enter.
  1075. (mh-folder-size-flist, mh-parse-flist-output-line)
  1076. (mh-add-sequence-notation): Use mh-line-beginning-position and
  1077. mh-line-end-position instead of line-beginning-position and
  1078. line-end-position.
  1079. * mh-show.el (mh-show-addr): Use mh-require instead of require.
  1080. * mh-speed.el (mh-folder-speedbar-menu-items, mh-speed-toggle)
  1081. (mh-speed-view, mh-folder-speedbar-buttons)
  1082. (mh-speed-highlight, mh-speed-goto-folder)
  1083. (mh-speed-add-buttons, mh-speed-parse-flists-output)
  1084. (mh-speed-invalidate-map, mh-speedbar-change-expand-button-char)
  1085. (mh-speed-add-folder): Use mh-line-beginning-position and
  1086. mh-line-end-position instead of line-beginning-position and
  1087. line-end-position.
  1088. (mh-speed-flists): Use mh-cancel-timer instead of cancel-timer.
  1089. * mh-thread.el (mh-thread-find-children)
  1090. (mh-thread-parse-scan-line, mh-thread-generate): Use
  1091. mh-line-beginning-position and mh-line-end-position instead of
  1092. line-beginning-position and line-end-position.
  1093. * mh-utils.el (mh-colors-available-p): Use mh-display-color-cells
  1094. instead of display-color-cells.
  1095. (mh-folder-list): Use mh-replace-regexp-in-string instead of
  1096. replace-regexp-in-string.
  1097. (mh-sub-folders-actual, mh-letter-toggle-header-field-display):
  1098. Use mh-line-beginning-position and mh-line-end-position instead of
  1099. line-beginning-position and line-end-position.
  1100. * mh-comp.el (mh-send-sub): Don't find components file in current
  1101. directory--this seems to have been a side-effect of commenting out
  1102. the use of an old mh-etc variable. Improve error message.
  1103. 2006-01-31 Bill Wohler <wohler@newt.com>
  1104. * mh-acros.el (mh-defun-compat, mh-defmacro-compat): Add name
  1105. argument since compatibility functions should have our package
  1106. prefix (mh-) by Emacs convention and to avoid messing up checks
  1107. for the same functions in other packages. Use explicit argument
  1108. instead of forming name by adding mh- prefix so that one can grep
  1109. and find the definition.
  1110. * mh-alias.el (mh-alias-local-users, mh-alias-reload)
  1111. (mh-alias-expand, mh-alias-minibuffer-confirm-address):
  1112. Use mh-assoc-string instead of assoc-string.
  1113. * mh-compat.el (assoc-string): Rename to mh-assoc-string.
  1114. (mh-mail-abbrev-make-syntax-table, mh-url-hexify-string):
  1115. Move here from mh-utils.el.
  1116. (mh-display-completion-list): Move here from mh-comp.el.
  1117. (mh-face-foreground, mh-face-background): Move here from
  1118. mh-xface.el.
  1119. (mh-write-file-functions): Move here from mh-folder.el.
  1120. * mh-folder.el (mh-write-file-functions-compat): Move to
  1121. mh-compat.el and rename to mh-write-file-functions.
  1122. (mh-folder-mode): Use the new name.
  1123. * mh-gnus.el (gnus-local-map-property): Rename to
  1124. mh-gnus-local-map-property.
  1125. (mm-merge-handles): Rename to mh-mm-merge-handles.
  1126. (mm-set-handle-multipart-parameter): Rename to
  1127. mh-mm-set-handle-multipart-parameter.
  1128. (mm-inline-text-vcard): Rename to mh-mm-inline-text-vcard.
  1129. (mm-possibly-verify-or-decrypt): Rename to
  1130. mh-mm-possibly-verify-or-decrypt.
  1131. (mm-handle-multipart-ctl-parameter): Rename to
  1132. mh-mm-handle-multipart-ctl-parameter.
  1133. (mm-readable-p): Rename to mh-mm-readable-p.
  1134. (mm-long-lines-p): Rename to mh-mm-long-lines-p.
  1135. (mm-keep-viewer-alive-p): Rename to mh-mm-keep-viewer-alive-p.
  1136. (mm-destroy-parts): Rename to mh-mm-destroy-parts.
  1137. (mm-uu-dissect-text-parts): Rename to mh-mm-uu-dissect-text-parts.
  1138. (mml-minibuffer-read-disposition): Rename to
  1139. mh-mml-minibuffer-read-disposition.
  1140. * mh-identity.el (mh-identity-field-handler): Use mh-assoc-string
  1141. instead of assoc-string.
  1142. * mh-mime.el (mh-mm-inline-media-tests, mh-mm-inline-message)
  1143. (mh-mime-display, mh-mime-display-security)
  1144. (mh-insert-mime-button, mh-insert-mime-security-button)
  1145. (mh-handle-set-external-undisplayer)
  1146. (mh-mime-security-press-button, mh-mime-security-show-details)
  1147. (mh-mml-attach-file, mh-mime-cleanup)
  1148. (mh-destroy-postponed-handles): Use new mh-* names for
  1149. compatibility functions.
  1150. * mh-utils.el (mail-abbrev-make-syntax-table): Move to
  1151. mh-compat.el and rename to mh-mail-abbrev-make-syntax-table.
  1152. (mh-beginning-of-word): Use the new name.
  1153. (mh-get-field): Delete ancient alias.
  1154. * mh-xface.el (mh-face-foreground-compat): Move to mh-compat.el
  1155. and rename to mh-face-foreground.
  1156. (mh-face-background-compat): Move to mh-compat.el
  1157. and rename to mh-face-background.
  1158. (mh-face-display-function): Use the new names.
  1159. (mh-x-image-url-cache-canonicalize): Use mh-url-hexify-string
  1160. instead of url-hexify-string.
  1161. (url-unreserved-chars): Move to mh-compat.el and rename to
  1162. mh-url-unreserved-chars.
  1163. (url-hexify-string): Move to mh-compat.el and rename to
  1164. mh-url-hexify-string.
  1165. * mh-letter.el (mh-complete-word): Fix bug in call to
  1166. mh-display-completion-list. Wrong argument was passed, so
  1167. completions wouldn't show highlighted prefix.
  1168. 2006-01-29 Bill Wohler <wohler@newt.com>
  1169. * mh-e.el (mh-scan-format-file-check): Allow any non-nil for
  1170. mh-adaptive-cmd-note-flag.
  1171. * mh-comp.el (sc-cite-original): Remove autoload of "sc" with old
  1172. docstring. sc-cite-original is autoloaded via loaddefs.el for all
  1173. supported versions. In addition, the package name "sc" has been
  1174. made obsolete by "supercite since at least Emacs 21.
  1175. * mh-scan.el (mh-note-copied, mh-note-printed): Reorganization
  1176. revealed character constants that were still strings (closes SF
  1177. #770772).
  1178. * mh-comp.el (mh-letter-hide-all-skipped-fields)
  1179. (mh-get-header-field): Move to mh-utils.el so that you can read
  1180. messages without having to load mh-comp.el and mh-letter.el.
  1181. * mh-letter.el (mh-hidden-header-keymap)
  1182. (mh-letter-toggle-header-field-display)
  1183. (mh-letter-skipped-header-field-p)
  1184. (mh-letter-skip-leading-whitespace-in-header-field)
  1185. (mh-letter-truncate-header-field): Move to mh-utils.el so that you
  1186. can read messages without having to load mh-comp.el and
  1187. mh-letter.el.
  1188. * mh-utils.el (mh-get-header-field)
  1189. (mh-letter-hide-all-skipped-fields)
  1190. (mh-letter-skipped-header-field-p, mh-hidden-header-keymap)
  1191. (mh-letter-toggle-header-field-display)
  1192. (mh-letter-skip-leading-whitespace-in-header-field)
  1193. (mh-letter-truncate-header-field): Move here from mh-comp.el and
  1194. mh-letter.el so that you can read messages without having to load
  1195. mh-comp.el and mh-letter.el.
  1196. * mh-comp.el (mh-insert-fields): Handle nil values. Rmail, at
  1197. least, will deliver them to us.
  1198. * mh-e.el (mh-after-commands-processed-hook)
  1199. (mh-before-commands-processed-hook): Specify what sort of requests
  1200. in docstring.
  1201. * mh-folder.el (mh-folder-mode): Use add-to-list to modify
  1202. minor-mode-alias.
  1203. * mh-letter.el (mh-letter-menu): Remove. Defvar no longer needed
  1204. to shush compiler.
  1205. (mh-letter-mode): Remove Mail menu.
  1206. 2006-01-29 Bill Wohler <wohler@newt.com>
  1207. The Great Cleanup
  1208. Remove circular dependencies. mh-e.el now includes few require
  1209. statements and stands alone. Other files should need to require
  1210. mh-e.el, which requires mh-loaddefs.el, plus variable-only files
  1211. such as mh-scan.el.
  1212. Remove unneeded require statements.
  1213. Remove unneeded load statements, or replace them with non-fatal
  1214. require statements.
  1215. Break out components into their own files that were often spread
  1216. between many files.
  1217. As a result, many functions that are now only used within a single
  1218. file no longer need to be autoloaded.
  1219. Rearrange and provide consistent headings.
  1220. Untabify.
  1221. * mh-acros.el: Update commentary to reflect current usage.
  1222. Add autoload cookies to all macros.
  1223. (mh-require-cl): Merge docstring and comment.
  1224. (mh-do-in-xemacs): Fix typo in docstring.
  1225. (assoc-string): Move to new file mh-compat.el.
  1226. (with-mh-folder-updating, mh-in-show-buffer)
  1227. (mh-do-at-event-location, mh-seq-msgs): Move here from mh-utils.el.
  1228. (mh-iterate-on-messages-in-region, mh-iterate-on-range): Move here
  1229. from mh-seq.el.
  1230. * mh-alias.el (mh-address-mail-regexp)
  1231. (mh-goto-address-find-address-at-point): Move here from mh-utils.el.
  1232. (mh-folder-line-matches-show-buffer-p): Move here from mh-e.el.
  1233. * mh-buffers.el: Update descriptive text.
  1234. * mh-comp.el (mh-note-repl, mh-note-forw, mh-note-dist): Move to
  1235. new file mh-scan.el.
  1236. (mh-yank-hooks, mh-to-field-choices, mh-position-on-field)
  1237. (mh-letter-menu, mh-letter-mode-help-messages)
  1238. (mh-letter-buttons-init-flag, mh-letter-mode)
  1239. (mh-font-lock-field-data, mh-letter-header-end)
  1240. (mh-auto-fill-for-letter, mh-to-field, mh-to-fcc)
  1241. (mh-file-is-vcard-p, mh-insert-signature, mh-check-whom)
  1242. (mh-insert-letter, mh-extract-from-attribution, mh-yank-cur-msg)
  1243. (mh-filter-out-non-text, mh-insert-prefix-string)
  1244. (mh-current-fill-prefix, mh-open-line, mh-complete-word)
  1245. (mh-folder-expand-at-point, mh-letter-complete-function-alist)
  1246. (mh-letter-complete, mh-letter-complete-or-space)
  1247. (mh-letter-confirm-address, mh-letter-header-field-at-point)
  1248. (mh-letter-next-header-field-or-indent)
  1249. (mh-letter-next-header-field, mh-letter-previous-header-field)
  1250. (mh-letter-skipped-header-field-p)
  1251. (mh-letter-skip-leading-whitespace-in-header-field)
  1252. (mh-hidden-header-keymap)
  1253. (mh-letter-toggle-header-field-display-button)
  1254. (mh-letter-toggle-header-field-display)
  1255. (mh-letter-truncate-header-field, mh-letter-mode-map): Move to new
  1256. file mh-letter.el.
  1257. (mh-letter-mode-map, mh-sent-from-folder, mh-send-args)
  1258. (mh-pgp-support-flag, mh-x-mailer-string)
  1259. (mh-letter-header-field-regexp): Move to mh-e.el.
  1260. (mh-goto-header-field, mh-goto-header-end)
  1261. (mh-extract-from-header-value, mh-beginning-of-word): Move to
  1262. mh-utils.el.
  1263. (mh-insert-header-separator): Move to mh-comp.el.
  1264. (mh-display-completion-list-compat): Move to new file
  1265. mh-compat.el.
  1266. * mh-compat.el: New file.
  1267. (assoc-string): Move here from mh-acros.el.
  1268. (mh-display-completion-list): Move here from mh-comp.el.
  1269. * mh-customize.el: Move content into mh-e.el and remove.
  1270. * mh-e.el (mh-folder-mode-map, mh-folder-seq-tool-bar-map)
  1271. (mh-folder-tool-bar-map, mh-inc-spool-map, mh-letter-mode-map)
  1272. (mh-letter-tool-bar-map, mh-search-mode-map, mh-show-mode-map)
  1273. (mh-show-seq-tool-bar-map, mh-show-tool-bar-map): All maps now
  1274. declared here so that they can be used in docstrings.
  1275. (mh-sent-from-folder, mh-sent-from-msg)
  1276. (mh-letter-header-field-regexp, mh-pgp-support-flag)
  1277. (mh-x-mailer-string): Move here from mh-comp.el.
  1278. (mh-folder-line-matches-show-buffer-p): Move to mh-alias.el.
  1279. (mh-thread-scan-line-map, mh-thread-scan-line-map-stack): Move
  1280. here from mh-seq.el.
  1281. (mh-draft-folder, mh-inbox, mh-user-path, mh-current-folder)
  1282. (mh-previous-window-config, mh-seen-list, mh-seq-list)
  1283. (mh-show-buffer, mh-showing-mode, mh-globals-hash)
  1284. (mh-show-folder-buffer, mh-mail-header-separator)
  1285. (mh-unseen-seq, mh-previous-seq, mh-page-to-next-msg-flag)
  1286. (mh-signature-separator, mh-signature-separator-regexp)
  1287. (mh-list-to-string, mh-list-to-string-1): Move here from
  1288. mh-utils.el.
  1289. (mh-index-max-cmdline-args, mh-xargs, mh-quote-for-shell)
  1290. (mh-exec-cmd, mh-exec-cmd-error, mh-exec-cmd-daemon)
  1291. (mh-exec-cmd-env-daemon, mh-process-daemon, mh-exec-cmd-quiet)
  1292. (mh-exec-cmd-output)
  1293. (mh-exchange-point-and-mark-preserving-active-mark)
  1294. (mh-exec-lib-cmd-output, mh-handle-process-error): Move here from
  1295. deprecated file mh-exec.el.
  1296. (mh-path): Move here from deprecated file mh-customize.el.
  1297. (mh-sys-path, mh-variants, mh-variant-in-use, mh-progs, mh-lib)
  1298. (mh-flists-present-flag, mh-variants, mh-variant-mh-info)
  1299. (mh-variant-mu-mh-info, mh-variant-nmh-info, mh-file-command-p)
  1300. (mh-variant-set-variant, mh-variant-p, mh-profile-component)
  1301. (mh-profile-component-value, mh-defface-compat): Move here from
  1302. deprecated file mh-init.el.
  1303. (mh-goto-next-button, mh-folder-mime-action)
  1304. (mh-folder-toggle-mime-part, mh-folder-inline-mime-part)
  1305. (mh-folder-save-mime-part, mh-toggle-mime-buttons): Move to to
  1306. mh-mime.el.
  1307. (mh-scan-format-mh, mh-scan-format-nmh, mh-note-deleted)
  1308. (mh-note-refiled, mh-note-cur, mh-scan-good-msg-regexp)
  1309. (mh-scan-deleted-msg-regexp, mh-scan-refiled-msg-regexp)
  1310. (mh-scan-valid-regexp, mh-scan-cur-msg-number-regexp)
  1311. (mh-scan-date-regexp, mh-scan-rcpt-regexp, mh-scan-body-regexp)
  1312. (mh-scan-subject-regexp, mh-scan-sent-to-me-sender-regexp)
  1313. (mh-scan-cmd-note-width, mh-scan-destination-width)
  1314. (mh-scan-date-width, mh-scan-date-flag-width)
  1315. (mh-scan-from-mbox-width, mh-scan-from-mbox-sep-width)
  1316. (mh-scan-field-destination-offset)
  1317. (mh-scan-field-from-start-offset, mh-scan-field-from-end-offset)
  1318. (mh-scan-field-subject-start-offset, mh-scan-format)
  1319. (mh-msg-num-width-to-column, mh-set-cmd-note): Move to new file
  1320. mh-scan.el.
  1321. (mh-partial-folder-mode-line-annotation)
  1322. (mh-folder-font-lock-keywords, mh-folder-font-lock-subject)
  1323. (mh-generate-sequence-font-lock, mh-last-destination)
  1324. (mh-last-destination-write, mh-first-msg-num, mh-last-msg-num)
  1325. (mh-rmail, mh-nmail, mh-delete-msg, mh-delete-msg-no-motion)
  1326. (mh-execute-commands, mh-first-msg, mh-header-display)
  1327. (mh-inc-folder, mh-last-msg, mh-next-undeleted-msg)
  1328. (mh-folder-from-address, mh-prompt-for-refile-folder)
  1329. (mh-refile-msg, mh-refile-or-write-again, mh-quit, mh-page-msg)
  1330. (mh-previous-page, mh-previous-undeleted-msg)
  1331. (mh-previous-unread-msg, mh-next-button, mh-prev-button)
  1332. (mh-reset-threads-and-narrowing, mh-rescan-folder)
  1333. (mh-write-msg-to-file, mh-toggle-showing, mh-undo)
  1334. (mh-visit-folder, mh-update-sequences, mh-delete-a-msg)
  1335. (mh-refile-a-msg, mh-next-msg, mh-next-unread-msg)
  1336. (mh-set-scan-mode, mh-undo-msg, mh-make-folder)
  1337. (mh-folder-sequence-menu, mh-folder-message-menu)
  1338. (mh-folder-folder-menu, mh-remove-xemacs-horizontal-scrollbar)
  1339. (mh-write-file-functions-compat, mh-folder-mode)
  1340. (mh-restore-desktop-buffer, mh-scan-folder)
  1341. (mh-regenerate-headers, mh-generate-new-cmd-note)
  1342. (mh-get-new-mail, mh-make-folder-mode-line, mh-goto-cur-msg)
  1343. (mh-process-or-undo-commands, mh-process-commands)
  1344. (mh-update-unseen, mh-delete-scan-msgs)
  1345. (mh-outstanding-commands-p): Move to new file mh-folder.el.
  1346. (mh-mapc, mh-colors-available-p, mh-colors-in-use-p)
  1347. (mh-make-local-vars, mh-coalesce-msg-list, mh-greaterp)
  1348. (mh-lessp): Move to mh-utils.el.
  1349. (mh-parse-flist-output-line, mh-folder-size-folder)
  1350. (mh-folder-size-flist, mh-folder-size, mh-add-sequence-notation)
  1351. (mh-remove-sequence-notation, mh-remove-cur-notation)
  1352. (mh-remove-all-notation, mh-delete-seq-locally)
  1353. (mh-read-folder-sequences, mh-read-msg-list)
  1354. (mh-notate-user-sequences, mh-internal-seqs, mh-internal-seq)
  1355. (mh-valid-seq-p, mh-delete-msg-from-seq, mh-catchup)
  1356. (mh-delete-a-msg-from-seq, mh-undefine-sequence)
  1357. (mh-define-sequence, mh-seq-containing-msg): Move to mh-seq.el.
  1358. (mh-xemacs-flag)
  1359. (mh-customize, mh-e, mh-alias, mh-folder, mh-folder-selection)
  1360. (mh-identity, mh-inc, mh-junk, mh-letter, mh-ranges)
  1361. (mh-scan-line-formats, mh-search, mh-sending-mail, mh-sequences)
  1362. (mh-show, mh-speedbar, mh-thread, mh-tool-bar, mh-hooks)
  1363. (mh-faces, mh-alias-completion-ignore-case-flag)
  1364. (mh-alias-expand-aliases-flag, mh-alias-flash-on-comma)
  1365. (mh-alias-insert-file, mh-alias-insertion-location)
  1366. (mh-alias-local-users, mh-alias-local-users-prefix)
  1367. (mh-alias-passwd-gecos-comma-separator-flag)
  1368. (mh-new-messages-folders, mh-ticked-messages-folders)
  1369. (mh-large-folder, mh-recenter-summary-flag)
  1370. (mh-recursive-folders-flag, mh-sortm-args)
  1371. (mh-default-folder-for-message-function, mh-default-folder-list)
  1372. (mh-default-folder-must-exist-flag, mh-default-folder-prefix)
  1373. (mh-identity-list, mh-auto-fields-list)
  1374. (mh-auto-fields-prompt-flag, mh-identity-default)
  1375. (mh-identity-handlers, mh-inc-prog, mh-inc-spool-list)
  1376. (mh-junk-choice, mh-junk-function-alist, mh-junk-choose)
  1377. (mh-junk-background, mh-junk-disposition, mh-junk-program)
  1378. (mh-compose-insertion, mh-compose-skipped-header-fields)
  1379. (mh-compose-space-does-completion-flag)
  1380. (mh-delete-yanked-msg-window-flag)
  1381. (mh-extract-from-attribution-verb, mh-ins-buf-prefix)
  1382. (mh-letter-complete-function, mh-letter-fill-column)
  1383. (mh-mml-method-default, mh-signature-file-name)
  1384. (mh-signature-separator-flag, mh-x-face-file, mh-yank-behavior)
  1385. (mh-interpret-number-as-range-flag, mh-adaptive-cmd-note-flag)
  1386. (mh-scan-format-file-check, mh-scan-format-file)
  1387. (mh-adaptive-cmd-note-flag-check, mh-scan-prog)
  1388. (mh-search-program, mh-compose-forward-as-mime-flag)
  1389. (mh-compose-letter-function, mh-compose-prompt-flag)
  1390. (mh-forward-subject-format, mh-insert-x-mailer-flag)
  1391. (mh-redist-full-contents-flag, mh-reply-default-reply-to)
  1392. (mh-reply-show-message-flag, mh-refile-preserves-sequences-flag)
  1393. (mh-tick-seq, mh-update-sequences-after-mh-show-flag)
  1394. (mh-bury-show-buffer-flag, mh-clean-message-header-flag)
  1395. (mh-decode-mime-flag, mh-display-buttons-for-alternatives-flag)
  1396. (mh-display-buttons-for-inline-parts-flag)
  1397. (mh-do-not-confirm-flag, mh-fetch-x-image-url)
  1398. (mh-graphical-smileys-flag, mh-graphical-emphasis-flag)
  1399. (mh-highlight-citation-style)
  1400. (mh-invisible-header-fields-internal)
  1401. (mh-delay-invisible-header-generation-flag)
  1402. (mh-invisible-header-fields, mh-invisible-header-fields-default)
  1403. (mh-invisible-header-fields-compiled, mh-invisible-headers)
  1404. (mh-lpr-command-format, mh-max-inline-image-height)
  1405. (mh-max-inline-image-width, mh-mhl-format-file)
  1406. (mh-mime-save-parts-default-directory, mh-print-background-flag)
  1407. (mh-show-maximum-size, mh-show-use-goto-addr-flag)
  1408. (mh-show-use-xface-flag, mh-store-default-directory)
  1409. (mh-summary-height, mh-speed-update-interval)
  1410. (mh-show-threads-flag, mh-tool-bar-search-function)
  1411. (mh-after-commands-processed-hook, mh-alias-reloaded-hook)
  1412. (mh-before-commands-processed-hook, mh-before-quit-hook)
  1413. (mh-before-send-letter-hook, mh-delete-msg-hook)
  1414. (mh-find-path-hook, mh-folder-mode-hook, mh-forward-hook)
  1415. (mh-inc-folder-hook, mh-insert-signature-hook)
  1416. (mh-kill-folder-suppress-prompt-hooks, mh-letter-mode-hook)
  1417. (mh-mh-to-mime-hook, mh-search-mode-hook, mh-quit-hook)
  1418. (mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
  1419. (mh-unseen-updated-hook, mh-min-colors-defined-flag)
  1420. (mh-folder-address, mh-folder-body)
  1421. (mh-folder-cur-msg-number, mh-folder-date, mh-folder-deleted)
  1422. (mh-folder-followup, mh-folder-msg-number, mh-folder-refiled)
  1423. (mh-folder-sent-to-me-hint, mh-folder-sent-to-me-sender)
  1424. (mh-folder-subject, mh-folder-tick, mh-folder-to)
  1425. (mh-search-folder, mh-letter-header-field, mh-show-cc)
  1426. (mh-show-date, mh-show-from, mh-show-header, mh-show-pgg-bad)
  1427. (mh-show-pgg-good, mh-show-pgg-unknown, mh-show-signature)
  1428. (mh-show-subject, mh-show-to, mh-show-xface, mh-speedbar-folder)
  1429. (mh-speedbar-folder-with-unseen-messages)
  1430. (mh-speedbar-selected-folder)
  1431. (mh-speedbar-selected-folder-with-unseen-messages): Move here from
  1432. deprecated file mh-customize.el.
  1433. * mh-exec.el: Move content into mh-e.el and remove.
  1434. * mh-folder.el: New file. Contains mh-folder-mode from mh-e.el.
  1435. * mh-funcs.el (mh-note-copied, mh-note-printed): Move to new file
  1436. mh-scan.el.
  1437. (mh-ephem-message, mh-help, mh-prefix-help): Move to mh-utils.el.
  1438. * mh-gnus.el (mm-uu-dissect-text-parts): Add.
  1439. (mh-mail-abbrev-make-syntax-table): Move to mh-utils.el and rename
  1440. to mail-abbrev-make-syntax-table.
  1441. * mh-identity.el (mh-identity-menu): New variable for existing
  1442. menu.
  1443. (mh-identity-make-menu-no-autoload): New alias for
  1444. mh-identity-make-menu which can be called from mh-e.el.
  1445. (mh-identity-list-set): Move to mh-e.el.
  1446. (mh-identity-add-menu): New function.
  1447. (mh-insert-identity): Add optional argument maybe-insert so that
  1448. local variable mh-identity-local does not have to be visible.
  1449. * mh-inc.el (mh-inc-spool-map): Move declaration to mh-e.el (with
  1450. rest of keymaps). Update key binding for ? to call mh-help with
  1451. help messages in new argument.
  1452. (mh-inc-spool-make-no-autoload): New alias for mh-inc-spool-make
  1453. which can be called from mh-e.el.
  1454. (mh-inc-spool-list-set): Simplify update of mh-inc-spool-map-help.
  1455. * mh-init.el: Move content into mh-e.el and remove.
  1456. * mh-junk.el: Update requires, untabify, and add mh-autoload
  1457. cookies.
  1458. * mh-letter.el: New file. Contains mh-letter-mode from mh-comp.el.
  1459. * mh-limit.el: New file. Contains display limit commands from
  1460. mh-mime.el.
  1461. * mh-mime.el: Rearrange for consistency with other files.
  1462. (mh-buffer-data, mh-mm-inline-media-tests): Move here from
  1463. mh-utils.el.
  1464. (mh-folder-inline-mime-part, mh-folder-save-mime-part)
  1465. (mh-folder-toggle-mime-part, mh-toggle-mime-buttons)
  1466. (mh-goto-next-button): Move here from mh-e.el.
  1467. * mh-print.el: Rearrange for consistency with other files.
  1468. * mh-scan.el: New file. Contains scan line constants and utilities
  1469. from XXX, mh-funcs, mh-utils.el.
  1470. * mh-search.el: Rearrange for consistency with other files.
  1471. (mh-search-mode-map): Drop C-c C-f {dr} bindings since these
  1472. fields which don't exist in the saved header. Replace C-c C-f f
  1473. with C-c C-f m per mail-mode consistency.
  1474. (mh-search-mode): Use mh-set-help instead of setting
  1475. mh-help-messages.
  1476. * mh-seq.el (mh-thread-message, mh-thread-container)
  1477. (mh-thread-id-hash, mh-thread-subject-hash, mh-thread-id-table)
  1478. (mh-thread-id-index-map, mh-thread-index-id-map)
  1479. (mh-thread-scan-line-map, mh-thread-scan-line-map-stack)
  1480. (mh-thread-subject-container-hash, mh-thread-duplicates)
  1481. (mh-thread-history, mh-thread-body-width)
  1482. (mh-thread-find-msg-subject mh-thread-initialize-hash)
  1483. (mh-thread-initialize, mh-thread-id-container)
  1484. (mh-thread-remove-parent-link, mh-thread-add-link)
  1485. (mh-thread-ancestor-p, mh-thread-get-message-container)
  1486. (mh-thread-get-message, mh-thread-canonicalize-id)
  1487. (mh-thread-prune-subject, mh-thread-container-subject)
  1488. (mh-thread-rewind-pruning, mh-thread-prune-containers)
  1489. (mh-thread-sort-containers, mh-thread-group-by-subject)
  1490. (mh-thread-process-in-reply-to, mh-thread-set-tables)
  1491. (mh-thread-update-id-index-maps, mh-thread-generate)
  1492. (mh-thread-inc, mh-thread-generate-scan-lines)
  1493. (mh-thread-parse-scan-line, mh-thread-update-scan-line-map)
  1494. (mh-thread-add-spaces, mh-thread-print-scan-lines)
  1495. (mh-thread-folder, mh-toggle-threads, mh-thread-forget-message)
  1496. (mh-thread-current-indentation-level, mh-thread-next-sibling)
  1497. (mh-thread-previous-sibling, mh-thread-immediate-ancestor)
  1498. (mh-thread-ancestor, mh-thread-find-children)
  1499. (mh-message-id-regexp, mh-thread-delete, mh-thread-refile):
  1500. Move to new file mh-thread.el.
  1501. (mh-subject-to-sequence, mh-subject-to-sequence-unthreaded)
  1502. (mh-subject-to-sequence-threaded, mh-edit-pick-expr)
  1503. (mh-pick-args-list, mh-narrow-to-subject, mh-narrow-to-from)
  1504. (mh-narrow-to-cc, mh-narrow-to-to, mh-narrow-to-header-field)
  1505. (mh-current-message-header-field, mh-narrow-to-range)
  1506. (mh-delete-subject, mh-delete-subject-or-thread): Move to new file
  1507. mh-limit.el.
  1508. (mh-iterate-on-messages-in-region, mh-iterate-on-range): Move to
  1509. mh-acros.el.
  1510. (mh-internal-seqs, mh-catchup, mh-delete-msg-from-seq)
  1511. (mh-internal-seq, mh-valid-seq-p, mh-seq-containing-msg)
  1512. (mh-define-sequence, mh-undefine-sequence)
  1513. (mh-delete-a-msg-from-seq, mh-delete-seq-locally)
  1514. (mh-folder-size, mh-folder-size-flist, mh-folder-size-folder)
  1515. (mh-parse-flist-output-line, mh-read-folder-sequences)
  1516. (mh-read-msg-list, mh-notate-user-sequences)
  1517. (mh-remove-cur-notation, mh-add-sequence-notation)
  1518. (mh-remove-sequence-notation, mh-remove-all-notation): Move here
  1519. from mh-e.el.
  1520. (mh-make-seq, mh-seq-name, mh-find-seq, mh-seq-to-msgs)
  1521. (mh-add-msgs-to-seq, mh-notate): Move here from mh-utils.el.
  1522. * mh-show.el: New file. Contains mh-show-mode from mh-utils.el.
  1523. * mh-speed.el: Rearrange for consistency with other files.
  1524. * mh-thread.el: New file. Contains threading code from mh-seq.el.
  1525. * mh-tool-bar.el: New file. Contains tool bar creation code from
  1526. deprecated file mh-customize.el.
  1527. * mh-utils.el (recursive-load-depth-limit): Remove setting.
  1528. No longer needed.
  1529. (mh-scan-msg-number-regexp, mh-scan-msg-overflow-regexp)
  1530. (mh-scan-msg-format-regexp, mh-scan-msg-format-string)
  1531. (mh-scan-msg-search-regexp, mh-cmd-note, mh-note-seq)
  1532. (mh-update-scan-format, mh-msg-num-width): Move to new file
  1533. mh-scan.el.
  1534. (mh-show-buffer-mode-line-buffer-id, mh-letter-header-font-lock)
  1535. (mh-header-field-font-lock, mh-header-to-font-lock)
  1536. (mh-header-cc-font-lock, mh-header-subject-font-lock)
  1537. (mh-show-font-lock-keywords)
  1538. (mh-show-font-lock-keywords-with-cite)
  1539. (mh-show-font-lock-fontify-region)
  1540. (mh-gnus-article-highlight-citation, mh-showing-with-headers)
  1541. (mh-start-of-uncleaned-message, mh-invalidate-show-buffer)
  1542. (mh-unvisit-file, mh-defun-show-buffer, mh-show-mode-map)
  1543. (mh-show-sequence-menu, mh-show-message-menu)
  1544. (mh-show-folder-menu, mh-show-mode, mh-show-addr)
  1545. (mh-maybe-show, mh-show, mh-show-msg, mh-show-unquote-From)
  1546. (mh-msg-folder, mh-display-msg, mh-clean-msg-header): Move to new
  1547. file mh-show.el.
  1548. (mh-mail-header-separator, mh-signature-separator-regexp)
  1549. (mh-signature-separator, mh-globals-hash, mh-user-path)
  1550. (mh-draft-folder, mh-unseen-seq, mh-previous-seq, mh-inbox)
  1551. (mh-previous-window-config, mh-current-folder mh-show-buffer)
  1552. (mh-showing-mode, mh-show-mode-map, mh-show-folder-buffer)
  1553. (mh-showing-mode, mh-seq-list, mh-seen-list, mh-summary-height)
  1554. (mh-list-to-string, mh-list-to-string-1): Move to mh-e.el.
  1555. (mh-buffer-data, mh-mm-inline-media-tests): Move to mh-mime.el.
  1556. (mh-address-mail-regexp, mh-goto-address-find-address-at-point):
  1557. Move to mh-alias.el.
  1558. (mh-letter-font-lock-keywords): Move to new file mh-letter.el.
  1559. (mh-folder-filename, mh-msg-count, mh-recenter, mh-msg-filename)
  1560. (mh-show-mouse, mh-modify, mh-goto-msg, mh-set-folder-modified-p):
  1561. Move to new file mh-folder.el.
  1562. (with-mh-folder-updating, mh-in-show-buffer)
  1563. (mh-do-at-event-location, mh-seq-msgs): Moved to mh-acros.el.
  1564. (mh-make-seq, mh-seq-name, mh-notate, mh-find-seq)
  1565. (mh-seq-to-msgs, mh-add-msgs-to-seq, mh-canonicalize-sequence):
  1566. Moved to mh-seq.el.
  1567. (mh-show-xface-function, mh-uncompface-executable, mh-face-to-png)
  1568. (mh-uncompface, mh-icontopbm, mh-face-foreground-compat)
  1569. (mh-face-background-compat, mh-face-display-function)
  1570. (mh-show-xface, mh-picon-directory-list)
  1571. (mh-picon-existing-directory-list)
  1572. (mh-picon-cache, mh-picon-image-types)
  1573. (mh-picon-set-directory-list, mh-picon-get-image)
  1574. (mh-picon-file-contents, mh-picon-generate-path)
  1575. (mh-x-image-cache-directory, mh-x-image-scaling-function)
  1576. (mh-wget-executable, mh-wget-choice, mh-wget-option)
  1577. (mh-x-image-temp-file, mh-x-image-url, mh-x-image-marker)
  1578. (mh-x-image-url-cache-file, mh-x-image-scale-with-pnm)
  1579. (mh-x-image-scale-with-convert)
  1580. (url-unreserved-chars, url-hexify-string)
  1581. (mh-x-image-url-cache-canonicalize)
  1582. (mh-x-image-set-download-state, mh-x-image-get-download-state)
  1583. (mh-x-image-url-fetch-image, mh-x-image-display)
  1584. (mh-x-image-scale-and-display, mh-x-image-url-sane-p)
  1585. (mh-x-image-url-display): Move to new file mh-xface.el.
  1586. (mh-logo-display): Call mh-image-load-path.
  1587. (mh-find-path-run, mh-find-path): Move here from deprecated file
  1588. mh-init.el.
  1589. (mh-help-messages): Now an alist of modes to an alist of messages.
  1590. (mh-set-help): New function used to set mh-help-messages.
  1591. (mh-help): Adjust for new format of mh-help-messages. Add
  1592. help-messages argument.
  1593. (mh-prefix-help): Refactor to use mh-help.
  1594. (mh-coalesce-msg-list, mh-greaterp, mh-lessp): Move here from
  1595. mh-e.el.
  1596. (mh-clear-sub-folders-cache): New function added to avoid exposing
  1597. mh-sub-folders-cache variable.
  1598. * mh-xface.el: New file. Contains X-Face and Face header field
  1599. display routines from mh-utils.el.
  1600. 2006-01-17 Bill Wohler <wohler@newt.com>
  1601. * mh-acros.el (assoc-string): Fix typo in argument.
  1602. 2006-01-16 Bill Wohler <wohler@newt.com>
  1603. * mh-acros.el (require): Remove defadvice of require as defadvice
  1604. is verboten within Emacs and our implementation was returning the
  1605. wrong value from require. Upcoming restructuring should make this
  1606. unnecessary.
  1607. (mh-assoc-ignore-case): Replace with defsubst assoc-string.
  1608. * mh-alias.el (mh-alias-local-users, mh-alias-reload)
  1609. (mh-alias-expand, mh-alias-minibuffer-confirm-address): Use it.
  1610. * mh-identity.el (mh-identity-field-handler): Use it.
  1611. * mh-comp.el (mh-show-buffer-message-number): Replace (car
  1612. (read-from-string string) with (string-to-number string).
  1613. * mh-e.el (mh-parse-flist-output-line, mh-folder-size-folder):
  1614. Ditto.
  1615. * mh-mime.el (mh-mml-forward-message): Ditto.
  1616. * mh-search.el (mh-swish-next-result, mh-mairix-next-result)
  1617. (mh-namazu-next-result, mh-grep-next-result, mh-md5sum-parser)
  1618. (mh-openssl-parser, mh-index-update-maps): Ditto.
  1619. * mh-seq.el (mh-translate-range, mh-narrow-to-header-field)
  1620. (mh-thread-generate): Ditto.
  1621. 2006-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
  1622. * mh-mime.el (mh-mime-display, mh-mm-inline-message): Fix use of
  1623. mm- functions for proper text=flowed handling (addresses SF
  1624. #1273521).
  1625. 2006-01-15 Bill Wohler <wohler@newt.com>
  1626. * mh-e.el (mh-limit-map, mh-help-messages): Change keybinding of
  1627. mh-narrow-to-from from / f to / m; mh-narrow-to-range from / r to
  1628. / g.
  1629. * mh-utils.el (mh-show-limit-map): Ditto.
  1630. * mh-exec.el: Require mh-acros, mh-buffers, and mh-utils for
  1631. standalone compile.
  1632. (mh-progs, mh-lib, mh-lib-progs): Move here from mh-init.el.
  1633. * mh-init.el (mh-progs, mh-lib, mh-lib-progs): Move to mh-exec.el,
  1634. where they are used.
  1635. * mh-comp.el (mh-pgp-support-flag): Move here from mh-utils.el;
  1636. needed to help remove dependency on mh-utils.
  1637. * mh-exec.el: New file. Move process support routines here from
  1638. mh-utils.el.
  1639. * mh-init.el (mh-utils): Remove require.
  1640. (mh-exec): Add require.
  1641. (mh-profile-component, mh-profile-component-value): Move here from
  1642. mh-utils.el.
  1643. * mh-utils.el (mh-pgp-support-flag): Move to mh-comp.el to reduce
  1644. dependencies on mh-utils.el.
  1645. (mh-profile-component, mh-profile-component-value): Move to
  1646. mh-init.el since that's the only place that uses them. (Other than
  1647. mh-alias.el; I'm thinking that mh-find-path can set variable from
  1648. the Aliasfile component like it does the other components).
  1649. (mh-index-max-cmdline-args, mh-xargs, mh-quote-for-shell)
  1650. (mh-exec-cmd, mh-exec-cmd-error, mh-exec-cmd-daemon)
  1651. (mh-exec-cmd-env-daemon, mh-process-daemon, mh-exec-cmd-quiet)
  1652. (defvar, mh-exec-cmd-output)
  1653. (mh-exchange-point-and-mark-preserving-active-mark)
  1654. (mh-exec-lib-cmd-output, mh-handle-process-error): Move to new
  1655. file mh-exec.el so that mh-init.el doesn't have to depend on
  1656. mh-utils.el, breaking circular dependency.
  1657. * mh-alias.el:
  1658. * mh-customize.el:
  1659. * mh-e.el:
  1660. * mh-funcs.el:
  1661. * mh-gnus.el:
  1662. * mh-identity.el:
  1663. * mh-inc.el:
  1664. * mh-junk.el:
  1665. * mh-mime.el:
  1666. * mh-print.el:
  1667. * mh-search.el:
  1668. * mh-seq.el:
  1669. * mh-speed.el: Added debugging statements (commented out) around
  1670. requires to help find dependency loops. Will remove them when
  1671. issues are resolved.
  1672. 2006-01-14 Bill Wohler <wohler@newt.com>
  1673. * mh-customize.el (mh-index): Rename group to mh-search and sort
  1674. group definition and options accordingly.
  1675. (mh-index-program): Rename to mh-search-program.
  1676. (mh-kill-folder-suppress-prompt-hooks): Rename mh-index-p to
  1677. mh-search-p.
  1678. (mh-search-mode-hook): Change group from mh-index to mh-search.
  1679. (mh-index-folder): Rename to mh-search-folder. Change group from
  1680. mh-index to mh-search.
  1681. * mh-e.el (mh-folder-font-lock-keywords): Rename mh-index-folder
  1682. to mh-search-folder.
  1683. * mh-search.el (mh-indexer) Rename to mh-searcher. The commands
  1684. pick and grep are searchers too but aren't indexed.
  1685. (mh-index-execute-search-function): Rename to mh-search-function.
  1686. (mh-index-next-result-function): Rename to
  1687. mh-search-next-result-function.
  1688. (mh-index-regexp-builder): Rename to mh-search-regexp-builder.
  1689. (mh-search): Since redo-search-flag defaults to nil and is of
  1690. lesser importance, make it an optional argument and place it after
  1691. the folder and search-regexp arguments. Sync docstring with manual.
  1692. (mh-search-mode-map): Autoload so that keys are shown in help even
  1693. before mh-search is loaded.
  1694. (mh-search-mode): Sync docstring with manual.
  1695. (mh-index-do-search): Rename argument indexer to searcher. Sync
  1696. docstring with manual.
  1697. (mh-pick-do-search): Sync docstring with manual.
  1698. (mh-index-p): Rename to mh-search-p.
  1699. (mh-indexer-choices): Rename to mh-search-choices.
  1700. (mh-index-choose): Rename to mh-search-choose. Rename argument
  1701. indexer to searcher.
  1702. (mh-swish++-execute-search, mh-swish-execute-search)
  1703. (mh-mairix-execute-search, mh-namazu-execute-search): Drop "and
  1704. read the results" from docstring since these functions don't.
  1705. (mh-pick-execute-search, mh-grep-execute-search): Sync docstring
  1706. with manual.
  1707. (mh-index-generate-pretty-name): Prune -search from string so that
  1708. folder names for pick searches are the same as those of other
  1709. searches.
  1710. 2006-01-13 Bill Wohler <wohler@newt.com>
  1711. * mh-acros.el (require): Added Satyaki's comment regarding what
  1712. needs to happen to remove this defadvice which caused a little
  1713. discussion on emacs-devel today (see Subject: mh-e/mh-acros.el
  1714. advices `require' incorrectly).
  1715. * mh-search.el (mh-index-next-result-function): Add format to
  1716. docstring.
  1717. (mh-mairix-next-result): Use nil instead of () which doesn't stand
  1718. out as well.
  1719. (mh-pick-execute-search): Operate across all folders if no folder
  1720. given and recurse folder(s).
  1721. (mh-pick-next-result): Handle new output.
  1722. * mh-utils.el (mh-collect-folder-names): Fix docstring.
  1723. (mh-children-p, mh-folder-list): New functions.
  1724. 2006-01-12 Bill Wohler <wohler@newt.com>
  1725. * mh-search.el: New file containing contents of mh-index.el and
  1726. mh-pick.el. C-c C-c launches your mh-index-program; C-c C-p runs
  1727. pick. Pick no longer sets the "search" sequence. Instead, it
  1728. brings up a folder view that we're accustomed to. (Closes SF
  1729. #829207.)
  1730. (mh-index-search): Rename to mh-search.
  1731. (mh-pick-menu): Rename menu from Pick to Search. Rename Execute
  1732. the Search to Perform Search and call mh-do-search. Add Search
  1733. with Pick menu item.
  1734. (mh-do-search): Delete.
  1735. (mh-search-mode): Rename from mh-pick-mode.
  1736. (MH-Search): Rename mode from MH-Pick.
  1737. (mh-search-mode-map): Rename from mh-pick-mode-map.
  1738. (mh-search-mode-help-messages): Rename from
  1739. mh-pick-mode-help-messages.
  1740. (mh-index-choose): Don't reuse the last value of mh-indexer; when
  1741. mh-pick-do-search sets it to 'pick, we don't necessarily want to
  1742. stay with that choice!
  1743. * mh-index.el:
  1744. * mh-pick.el: Merge into mh-search.el and delete.
  1745. * mh-customize.el (mh-index-program): Change mh-index-search to
  1746. mh-search in docstring.
  1747. (mh-tool-bar-search-function): Change default from
  1748. mh-search-folder to mh-search. Remove mh-search-folder as choice
  1749. and rename mh-index-search choice to mh-search. Fix docstring.
  1750. (mh-pick-mode-hook): Rename to mh-search-mode-hook and change
  1751. mh-search-folder to mh-search in docstring.
  1752. * mh-e.el (mh-folder-folder-menu): Delete Search a Folder. Change
  1753. Indexed Search to Search. Use mh-search instead of mh-index-search.
  1754. (mh-folder-map): Delete i (mh-index-search) keybinding. Change s
  1755. from mh-show-search-folder to mh-search.
  1756. * mh-seq.el (mh-put-msg-in-seq): Fix docstring now that
  1757. mh-search-folder no longer creates the search sequence.
  1758. * mh-utils.el (mh-show-search-folder): Delete.
  1759. (mh-show-folder-map): Delete i (mh-index-search) keybinding.
  1760. Change s from mh-show-search-folder to mh-search.
  1761. (mh-show-folder-menu): Delete Search a Folder. Change Indexed
  1762. Search to Search. Use mh-search instead of mh-index-search.
  1763. (mh-index-max-cmdline-args, mh-xargs, mh-quote-for-shell):
  1764. Move here from deleted mh-index.el.
  1765. 2006-01-11 Bill Wohler <wohler@newt.com>
  1766. * mh-acros.el (mh-defun-compat, mh-defmacro-compat): Move here
  1767. from mh-gnus.el.
  1768. * mh-gnus.el: Require mh-acros.
  1769. (mh-defmacro-compat, mh-defun-compat): Move to mh-acros.el.
  1770. * mh-utils.el (mh-x-image-url-cache-canonicalize): Use
  1771. url-hexify-string to remove special characters from filenames
  1772. (closes SF #1396499). Note that this invalidates the existing
  1773. names in your cache so you might as well remove
  1774. ~/Mail/.mhe-x-image-cache/* now.
  1775. (url-unreserved-chars, url-hexify-string): Define if not defined.
  1776. Copied from url-util.el in Emacs22 for Emacs 21.
  1777. * mh-buffers.el: New file. Contains constants and code from
  1778. mh-index.el and mh-utils.el.
  1779. * mh-alias.el:
  1780. * mh-comp.el:
  1781. * mh-e.el:
  1782. * mh-funcs.el:
  1783. * mh-init.el:
  1784. * mh-junk.el:
  1785. * mh-mime.el:
  1786. * mh-print.el:
  1787. * mh-seq.el: Require new file mh-buffers.el.
  1788. * mh-index.el: Require new file mh-buffers.el.
  1789. (mh-index-temp-buffer, mh-checksum-buffer): Move to new file
  1790. mh-buffers.el.
  1791. * mh-utils.el: Require new file mh-buffers.el.
  1792. (mh-temp-buffer, mh-temp-fetch-buffer)
  1793. (mh-aliases-buffer, mh-folders-buffer, mh-help-buffer)
  1794. (mh-info-buffer, mh-log-buffer, mh-mail-delivery-buffer)
  1795. (mh-recipients-buffer, mh-sequences-buffer, mh-log-buffer-lines)
  1796. (mh-truncate-log-buffer): Move to new file mh-buffers.el.
  1797. * mh-comp.el (mh-forward): Cosmetics on prompt when draft exists.
  1798. (mh-send-letter): Add -msgid to mh-send-args (closes SF #725425).
  1799. 2006-01-10 Bill Wohler <wohler@newt.com>
  1800. * mh-comp.el (mh-insert-letter): If you choose a different folder,
  1801. the cur message is used. Sync docstring with manual (closes SF
  1802. #1205890).
  1803. * mh-mime.el (mh-compose-forward): Use standard range argument
  1804. instead of messages. Use more powerful mh-read-range instead of
  1805. read-string. Sync docstring with manual (close SF #1205890).
  1806. * mh-index.el (mh-index-search): Checking mh-find-path-run is
  1807. unnecessary.
  1808. (mh-index-next-folder): Don't back up a line when going backwards
  1809. since this skips the current folder heading if point is on the
  1810. first message after the folder heading (closes SF #1126188).
  1811. * mh-init.el (mh-sys-path): Co-locate with mh-variants, which uses it.
  1812. (mh-variants): Note variable isn't meant to be accessed directly;
  1813. use function mh-variants instead.
  1814. (mh-variant-info, mh-variant-mh-info, mh-variant-mu-mh-info)
  1815. (mh-variant-nmh-info): Co-locate next to mh-variants, which uses
  1816. them. Updated to use mh-file-command-p which is more accurrate
  1817. than file-executable-p which returns t for directories.
  1818. (mh-file-command-p): Move here from mh-utils, since
  1819. mh-variant-*-info are the only functions to use it.
  1820. (mh-variant-set, mh-variant-set-variant, mh-variant-p): Use
  1821. function mh-variants instead of variable. More robust.
  1822. (mh-find-path-run): Move here from mh-utils.el. Mention that
  1823. checking this variable is unnecessary.
  1824. (mh-find-path): Move here from mh-utils.el. With the advent of MH
  1825. variants and an mhparam command that doesn't work if there isn't
  1826. an MH profile, we can't get libdir for running install-mh. So
  1827. don't bother. If there's an issue with the environment, direct the
  1828. user to install MH and run install-mh (closes SF #835192). Don't
  1829. read ~/.mh_profile directly. Use mh-profile-component which uses
  1830. mhparam (closes SF #1016027).
  1831. * mh-utils.el (mh-get-profile-field): Rename to
  1832. mh-profile-component-value. Add colon to search removing
  1833. unnecessary addition of colon to field in mh-profile-component.
  1834. (mh-profile-component): Modify call to mh-profile-component-value
  1835. accordingly. Move next to mh-profile-component-value.
  1836. (mh-find-path-run, mh-find-path, mh-file-command-p): Move to
  1837. mh-init.el. It makes sense that code that is only run once per
  1838. session (more or less) is in mh-init.el rather than cluttering
  1839. mh-utils.el.
  1840. (mh-no-install, mh-install): Delete.
  1841. * mh-customize.el (mh-folder-msg-number):
  1842. * mh-mime.el (mh-file-mime-type): Removed trailing whitespace.
  1843. 2006-01-09 Bill Wohler <wohler@newt.com>
  1844. * mh-init.el (mh-variant-mu-mh-info, mh-variant-nmh-info): Applied
  1845. patch from Satyaki from SF #1016027.
  1846. * mh-e.el (mh-rescan-folder): Try to keep cursor at current
  1847. message, even if cur sequence is no longer present (closes SF
  1848. #1207247).
  1849. * mh-comp.el: Use ";; Shush compiler." comment consistently per
  1850. Mark's suggestion.
  1851. (mh-letter-mode): Derive from mail-mode and delete code copied
  1852. from mail-mode (closes SF #1385571). Mention mail-mode-hook in
  1853. docstring.
  1854. (mh-fill-paragraph-function): Delete. Handled by mail-mode.
  1855. (mh-to-field-choices): For consistency with mail-mode, add "a" for
  1856. "Mail-Reply-To:", "l" for "Mail-Followup-To:", and "r" for
  1857. "Reply-To:". Change "r" to "m" for "From:" (closes SF #1400139).
  1858. (mh-to-fcc): Move setting of folder argument to interactive
  1859. argument as is the norm.
  1860. (mh-letter-complete-function-alist): Add mail-reply-to.
  1861. (mh-letter-mode-map): Add keys for mh-to-field (Mail-Reply-To,
  1862. Mail-Followup-To, Reply-To, From).
  1863. * mh-customize.el: Use ";; Forward definition." consistently.
  1864. Comment declaration to remind programmer to update forward
  1865. definition if default changes.
  1866. * mh-funcs.el:
  1867. * mh-inc.el:
  1868. * mh-init.el:
  1869. * mh-mime.el:
  1870. * mh-seq.el:
  1871. * mh-utils.el: Use ";; Shush compiler." comment consistently per
  1872. Mark's suggestion.
  1873. 2006-01-08 Bill Wohler <wohler@newt.com>
  1874. Removed code that was marked as Emacs 20 compatible that was
  1875. easily found showing how important it is to document such
  1876. things (closes SF #1359240). Feel free to nuke any other Emacs 20
  1877. peculiarities that you find. Wrapped code for shushing compiler
  1878. with (eval-when-compile), sometimes moving the defvars closer to
  1879. where they were used.
  1880. * mh-alias.el (mh-alias-gecos-name): Use replace-regexp-in-string
  1881. instead of mh-replace-in-string as mh-replace-in-string was
  1882. replaced by a more appropriate defsubst in mh-xemacs.el.
  1883. * mh-comp.el: Require cleanup, wrap compiler-shushing defvars with
  1884. eval-when-compile.
  1885. (mh-file-is-vcard-p): Removed redundant test.
  1886. * mh-customize.el: Require cleanup, wrap compiler-shushing defvars
  1887. with eval-when-compile.
  1888. (mh-adaptive-cmd-note-flag, mh-invisible-header-fields)
  1889. (mh-invisible-header-fields-default): Add forward definitions.
  1890. (mh-invisible-header-fields-default): Alphabetize.
  1891. * mh-e.el: Require cleanup, wrap compiler-shushing defvars with
  1892. eval-when-compile.
  1893. (mh-thread-scan-line-map-stack, tool-bar-mode): Delete unused
  1894. variables.
  1895. (mh-colors-available-p): Just call display-color-cells. It's on
  1896. all supported Emacsen (and defaliased on XEmacs).
  1897. * mh-funcs.el:
  1898. * mh-inc.el:
  1899. * mh-init.el: Wrap compiler-shushing defvars with
  1900. eval-when-compile.
  1901. * mh-identity.el: Don't need (mh-require-cl).
  1902. * mh-index.el: Don't need to load executable any more.
  1903. * mh-mime.el: Wrap compiler-shushing defvars with
  1904. eval-when-compile.
  1905. (mh-have-file-command): Initialize variable to 'undefined. Add
  1906. docstring. Update function of same name accordingly. Also don't
  1907. need to load executable any more.
  1908. (mh-mime-content-types): Delete.
  1909. (mh-minibuffer-read-type): Prompt user for type if
  1910. mh-file-mime-type returns application/octet-stream. Assume we have
  1911. mailcap-mime-types.
  1912. (mh-mime-display): Update error message.
  1913. * mh-seq.el: Require cleanup, and wrap compiler-shushing defvars
  1914. with eval-when-compile.
  1915. * mh-utils.el: Require cleanup, and wrap compiler-shushing defvars
  1916. with eval-when-compile.
  1917. (mh-clean-msg-header): Don't set after-change-functions to nil.
  1918. (mh-replace-in-string): Remove. Create defsubst in mh-xemacs.el
  1919. instead.
  1920. 2006-01-07 Bill Wohler <wohler@newt.com>
  1921. * mh-customize.el: Updated Faces documentation in header.
  1922. (mh-invisible-header-fields-internal): Add X-Lumos-SenderID,
  1923. X-Return-Path-Hint, and X-Roving-* from Roving ConstantContact.
  1924. * mh-mime.el (mh-mml-tag-present-p): Update regexp to handle <mml>
  1925. tags inserted by Gnus gnus-summary-mail-forward (closes SF
  1926. #1399307).
  1927. 2006-01-03 Mark D. Baushke <mdb@gnu.org>
  1928. * mh-e.el (mh-delete-a-msg): Fix whitespace nit.
  1929. * mh-index.el (mh-mairix-execute-search): Fix symbol quote.
  1930. 2006-01-03 Bill Wohler <wohler@newt.com>
  1931. * mh-alias.el (mh-alias-add-alias): Grand message and error string
  1932. unification. Use single sentence if possible by using semicolon.
  1933. Don't end message with punctuation. Don't need format with
  1934. message. Quote messages as in docstrings: use `' around symbols,
  1935. \" for option choices. Don't use quotes around %s.
  1936. * mh-comp.el (mh-complete-word): Ditto.
  1937. * mh-customize.el (mh-adaptive-cmd-note-flag-check)
  1938. (mh-scan-format-file-check): Ditto.
  1939. * mh-e.el (mh-refile-or-write-again, mh-previous-unread-msg)
  1940. (mh-delete-a-msg, mh-refile-a-msg, mh-next-unread-msg)
  1941. (mh-msg-num-width-to-column): Ditto.
  1942. * mh-identity.el (mh-identity-field-handler): Ditto.
  1943. * mh-index.el (mh-mairix-execute-search)
  1944. (mh-swish-execute-search, mh-swish++-execute-search)
  1945. (mh-namazu-execute-search): Ditto.
  1946. * mh-init.el (mh-variant-set): Ditto.
  1947. * mh-mime.el (mh-mh-to-mime-undo, mh-mml-forward-message)
  1948. (mh-secure-message, mh-mime-display): Ditto.
  1949. * mh-pick.el (mh-search-folder, mh-pick-construct-regexp): Ditto.
  1950. * mh-seq.el (mh-narrow-to-seq, mh-put-msg-in-seq, mh-read-seq)
  1951. (mh-read-range, mh-thread-container-subject): Ditto.
  1952. * mh-utils.el (mh-x-image-scale-and-display)
  1953. (mh-prompt-for-folder, mh-handle-process-error)
  1954. (mh-list-to-string-1): Ditto.
  1955. * mh-comp.el (mh-reply): Use standard default notation in
  1956. prompts (closes SF #1275933).
  1957. * mh-mime.el (mh-mime-save-parts): Ditto.
  1958. * mh-seq.el (mh-read-seq, mh-read-range): Ditto.
  1959. * mh-customize.el (mh-folder-msg-number): Snow is actually
  1960. off-white on low color displays which turns to white when bold.
  1961. This is unreadable on white backgrounds. Use snow with min-colors
  1962. requirement. Use cyan on low-color displays.
  1963. * mh-init.el (mh-defface-compat): On low-color displays, delete
  1964. the high-color display rather than simply strip the min-colors
  1965. requirement since the existing algorithm shadowed the desired
  1966. display on low-color displays.
  1967. * mh-alias.el (mh-alias-add-alias): Remove leading * from
  1968. docstring.
  1969. 2006-01-02 Bill Wohler <wohler@newt.com>
  1970. * mh-alias.el (mh-alias-grab-from-field): Remove leading * from
  1971. docstring. Does this mean something in a defun?
  1972. * mh-customize.el (bw-new-face-to-old, bw-old-face-to-new):
  1973. Checkdoc fix.
  1974. * mh-e.el (mh-inc-folder): Rename maildrop-name argument to file
  1975. so it reads better in docstring and manual. Sync docstring with
  1976. manual.
  1977. * mh-init.el (mh-defface-compat): Remove trailing space (checkdoc).
  1978. * mh-alias.el (mh-alias-apropos): Sync docstring with manual.
  1979. * mh-comp.el (mh-redistribute, mh-to-field, mh-to-fcc)
  1980. (mh-insert-auto-fields, mh-send-letter, mh-yank-cur-msg)
  1981. (mh-fully-kill-draft, mh-open-line, mh-letter-complete)
  1982. (mh-letter-complete-or-space, mh-letter-confirm-address)
  1983. (mh-letter-next-header-field-or-indent)
  1984. (mh-letter-previous-header-field): Ditto.
  1985. * mh-customize.el (mh-alias-completion-ignore-case-flag)
  1986. (mh-default-folder-for-message-function, mh-mml-method-default)
  1987. (mh-signature-file-name, mh-yank-behavior, mh-show-hook)
  1988. (mh-show-mode-hook) Ditto.
  1989. * mh-e.el (mh-refile-or-write-again, mh-toggle-showing): Ditto.
  1990. * mh-funcs.el (mh-pipe-msg, mh-sort-folder, mh-undo-folder)
  1991. (mh-store-msg, mh-store-buffer): Ditto.
  1992. * mh-index.el (mh-index-search, mh-index-do-search)
  1993. (mh-index-next-folder, mh-index-sequenced-messages): Ditto.
  1994. * mh-junk.el (mh-spamassassin-blacklist): Ditto.
  1995. * mh-mime.el (mh-mh-compose-external-compressed-tar)
  1996. (mh-mh-compose-external-type, mh-mh-to-mime, mh-mh-to-mime-undo)
  1997. (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt)
  1998. (mh-mml-secure-message-signencrypt): Ditto.
  1999. * mh-pick.el (mh-search-folder): Ditto.
  2000. * mh-seq.el (mh-widen): Ditto.
  2001. * mh-utils.el (mh-show, mh-modify): Ditto.
  2002. 2006-01-02 Mark D. Baushke <mdb@gnu.org>
  2003. * mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
  2004. 2006-01-01 Bill Wohler <wohler@newt.com>
  2005. * mh-customize.el: Sync docstrings with manual for faces and sort
  2006. them alphabetically.
  2007. (mh-faces): Move below mh-hooks.
  2008. (mh-folder-faces, mh-index-faces, mh-letter-faces)
  2009. (mh-show-faces, mh-speed-faces): Delete. Organize faces like hooks.
  2010. (mh-speed-update-interval): Fix group (mh-speedbar, not mh-speed).
  2011. (facemenu-unlisted-faces): Might as well ignore all MH-E faces.
  2012. (mh-folder-body-face, mh-folder-cur-msg-face)
  2013. (mh-folder-cur-msg-number-face, mh-folder-date-face)
  2014. (mh-folder-followup-face, mh-folder-msg-number-face)
  2015. (mh-folder-deleted-face, mh-folder-refiled-face)
  2016. (mh-folder-subject-face, mh-folder-address-face)
  2017. (mh-folder-scan-format-face, mh-folder-to-face)
  2018. (mh-index-folder-face, mh-show-cc-face, mh-show-date-face)
  2019. (mh-show-header-face, mh-show-pgg-good-face)
  2020. (mh-show-pgg-unknown-face, mh-show-pgg-bad-face)
  2021. (mh-show-to-face, mh-show-from-face, mh-show-subject-face):
  2022. Delete.
  2023. (mh-folder-cur-msg): Unused. Delete.
  2024. (mh-folder-address): Use defface; inherit from mh-folder-subject.
  2025. (mh-folder-body, mh-folder-cur-msg-number, mh-folder-date):
  2026. Inherit from mh-folder-msg-number.
  2027. (mh-folder-deleted): Use defface. Inherit from
  2028. mh-folder-msg-number.
  2029. (mh-folder-sent-to-me-hint): New face. Inherit from
  2030. mh-folder-date.
  2031. (mh-folder-sent-to-me-sender): Rename from mh-folder-scan-format.
  2032. Use defface. Inherit from mh-folder-followup.
  2033. (mh-show-xface): Inherit from mh-show-from and highlight.
  2034. (bw-face-generation, bw-toggle-faces)
  2035. (bw-new-face-to-old, bw-old-face-to-new): New (tempoarary)
  2036. variables, functions for toggling between old and new faces.
  2037. * mh-e.el (font-lock-auto-fontify, font-lock-defaults): Hide in
  2038. eval-when-compile. We should probably do this throughout.
  2039. (mh-scan-good-msg-regexp, mh-scan-deleted-msg-regexp)
  2040. (mh-scan-refiled-msg-regexp, mh-scan-cur-msg-number-regexp)
  2041. (mh-scan-date-regexp, mh-scan-rcpt-regexp, mh-scan-body-regexp)
  2042. (mh-scan-subject-regexp): Sync docstrings with manual.
  2043. (mh-scan-format-regexp): Rename to
  2044. mh-scan-sent-to-me-sender-regexp. Drop date parenthesized
  2045. expression. Make expression more like the others (anchored at the
  2046. beginning of line). Sync docstrings with manual.
  2047. (mh-folder-font-lock-keywords): Use faces directly rather than
  2048. -face variables. Use mh-scan-sent-to-me-sender-regexp instead of
  2049. mh-scan-format-regexp, and within that expression, use faces
  2050. mh-folder-sent-to-me-hint and mh-folder-sent-to-me-sender instead
  2051. of mh-folder-date-face and mh-folder-scan-format-face which were
  2052. misleading.
  2053. * mh-mime.el (mh-mime-security-button-face): Use faces directly
  2054. rather than -face variables.
  2055. * mh-utils.el (mh-show-font-lock-keywords): Use faces directly
  2056. rather than -face variables.
  2057. (mh-face-foreground-compat, mh-face-background-compat): New macros.
  2058. (mh-face-display-function): Use mh-face-foreground-compat and
  2059. mh-face-background-compat to use inherited attributes of
  2060. mh-show-xface on Emacs 22 while still working on Emacs 21.
  2061. 2005-12-28 Bill Wohler <wohler@newt.com>
  2062. * mh-comp.el (mh-e-user-agent): Move here from simple.el.
  2063. Use mh-user-agent-compose instead of mh-smail-batch.
  2064. 2005-12-27 Bill Wohler <wohler@newt.com>
  2065. * mh-utils.el (mh-prompt-for-folder): Use can-create argument to
  2066. suppress creation of folder if it doesn't exist.
  2067. 2005-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
  2068. * mh-utils.el (mh-process-daemon): Don't change buffer in proc-filter.
  2069. 2005-12-23 Bill Wohler <wohler@newt.com>
  2070. * mh-e.el (mh-folders-changed): Fix typo in docstring.
  2071. Follow MH-E Developers Guide conventions. Use `' quotes for Help
  2072. hyperlinks such as symbols, Info nodes, or URLs. Use \" quotes for
  2073. everything else. Otherwise, you can accidentally get links to
  2074. nonsense symbols.
  2075. 2005-12-22 Bill Wohler <wohler@newt.com>
  2076. Follow Emacs coding conventions. Use default setting of
  2077. emacs-lisp-docstring-fill-column which is 65.
  2078. * mh-alias.el (mh-alias-reload): Sync docstrings with manual.
  2079. * mh-comp.el (mh-letter-mode): Use 60 column width.
  2080. (mh-forward, mh-insert-signature, mh-send-letter): Sync docstrings
  2081. with manual.
  2082. (mh-yank-cur-msg): Mention that mh-ins-buf-prefix isn't used if
  2083. you have added a mail-citation-hook and neither are used if you
  2084. use one of the supercite flavors of mh-yank-behavior. Sync
  2085. docstrings with manual.
  2086. * mh-customize.el (mh-kill-folder-suppress-prompt-hooks): Rename
  2087. from mh-kill-folder-suppress-prompt-hook since it is an abnormal
  2088. hook. Use "Hook run by `function'..." instead of "Invoked...".
  2089. Sync docstrings with manual.
  2090. (mh-ins-buf-prefix, mh-yank-behavior): Mention that
  2091. mh-ins-buf-prefix isn't used if you have added a
  2092. mail-citation-hook and neither are used if you use one of the
  2093. supercite flavors of mh-yank-behavior. Sync docstrings with manual.
  2094. (mail-citation-hook): Delete. Use one in sendmail.el.
  2095. (mh-signature-file-name, mh-after-commands-processed-hook)
  2096. (mh-alias-reloaded-hook, mh-before-commands-processed-hook)
  2097. (mh-before-quit-hook, mh-before-send-letter-hook)
  2098. (mh-delete-msg-hook, mh-find-path-hook, mh-folder-mode-hook)
  2099. (mh-forward-hook, mh-inc-folder-hook, mh-insert-signature-hook)
  2100. (mh-letter-mode-hook)
  2101. (mh-mh-to-mime-hook, mh-pick-mode-hook, mh-quit-hook)
  2102. (mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
  2103. (mh-unseen-updated-hook): Use "Hook run by `function'..." instead
  2104. of "Invoked...". Sync docstrings with manual.
  2105. * mh-e.el (mh-last-destination, mh-last-destination-folder)
  2106. (mh-last-destination-write, mh-folder-mode-map, mh-arrow-marker)
  2107. (mh-delete-list, mh-refile-list, mh-folders-changed)
  2108. (mh-next-direction, mh-view-ops, mh-folder-view-stack)
  2109. (mh-index-data, mh-first-msg-num, mh-last-msg-num)
  2110. (mh-mode-line-annotation, mh-sequence-notation-history)
  2111. (mh-colors-available-flag): Move comment into docstring.
  2112. (mh-delete-msg, mh-execute-commands, mh-inc-folder, mh-quit)
  2113. (mh-process-commands): Sync docstrings with manual.
  2114. (mh-refile-msg): Small doc edit.
  2115. (mh-delete-a-msg, mh-refile-a-msg): Sync docstrings with manual.
  2116. Rename msg argument to message.
  2117. * mh-funcs.el (mh-kill-folder): Sync docstrings with manual.
  2118. * mh-e.el (mh-update-unseen): No longer say "The value of
  2119. `foo-hook' is a list of functions to be called, with no arguments,
  2120. ...," but rather just "The hook foo-hook is called...".
  2121. * mh-mime.el (mh-mh-to-mime): Ditto.
  2122. * mh-pick.el (mh-pick-mode): Ditto.
  2123. * mh-utils.el (mh-showing-mode): Use uppercase for argument in
  2124. docstring.
  2125. (mh-seq-list, mh-seen-list, mh-showing-with-headers): Move comment
  2126. into docstring.
  2127. (mh-show-mode, mh-show-msg, mh-find-path): Sync docstrings with
  2128. manual.
  2129. 2005-12-19 Stephen Gildea <gildea@stop.mail-abuse.org>
  2130. * mh-customize.el (mh-after-commands-processed-hook): New variable.
  2131. (mh-before-commands-processed-hook): Rename mh-folder-updated-hook.
  2132. * mh-e.el (mh-process-commands): Rename mh-folder-updated-hook to
  2133. mh-before-commands-processed-hook, call new
  2134. mh-after-commands-processed-hook.
  2135. (mh-folders-changed): New variable (for use in
  2136. mh-after-commands-processed-hook).
  2137. 2005-12-19 Bill Wohler <wohler@newt.com>
  2138. * mh-acros.el:
  2139. * mh-alias.el:
  2140. * mh-comp.el:
  2141. * mh-customize.el:
  2142. * mh-e.el:
  2143. * mh-funcs.el:
  2144. * mh-gnus.el:
  2145. * mh-identity.el:
  2146. * mh-inc.el:
  2147. * mh-index.el:
  2148. * mh-init.el:
  2149. * mh-junk.el:
  2150. * mh-mime.el:
  2151. * mh-pick.el:
  2152. * mh-print.el:
  2153. * mh-seq.el:
  2154. * mh-speed.el:
  2155. * mh-utils.el:
  2156. Follow commenting conventions. Don't use ;;; form so much, except
  2157. for headings. Precede headings with page feed. This was mostly
  2158. already done, so I made it a convention. Did not update copyright
  2159. on a couple of files since this was an insignificant change.
  2160. 2005-12-18 Bill Wohler <wohler@newt.com>
  2161. * mh-customize.el (mh-toolbar): Rename to mh-tool-bar.
  2162. (mh-tool-bar-search-function): Sync docstrings with manual.
  2163. (mh-tool-bar-customize): Replace toolbar with tool bar in docstring.
  2164. (mh-tool-bar-letter-help): Fix manual reference.
  2165. (mh-xemacs-use-toolbar-flag): Rename to
  2166. mh-xemacs-use-tool-bar-flag. Initialize to
  2167. mh-xemacs-has-tool-bar-flag. Sync docstrings with manual.
  2168. (mh-xemacs-toolbar-position): Rename to
  2169. mh-xemacs-tool-bar-position. Initialize to nil. Drop "no tool bar"
  2170. option (redundant) and change "Same As Default Tool Bar" setting
  2171. to nil. Sync docstrings with manual.
  2172. (mh-tool-bar-define): Replace toolbar with tool-bar or tool bar
  2173. depending on context.
  2174. (mh-toolbar-init): Rename to mh-tool-bar-init. Simplify condition
  2175. for calling set-specifier. Only look at the value of
  2176. mh-xemacs-use-tool-bar-flag.
  2177. (mh-tool-bar-folder-buttons, mh-tool-bar-letter-buttons):
  2178. Sync docstrings with manual.
  2179. * mh-comp.el (mh-letter-mode): Use mh-tool-bar-init instead of
  2180. mh-toolbar-init.
  2181. * mh-e.el (mh-folder-mode): Ditto.
  2182. * mh-utils.el (mh-show-mode): Ditto.
  2183. 2005-12-15 Bill Wohler <wohler@newt.com>
  2184. * mh-e.el (mh-delete-msg): Sync docstrings with manual.
  2185. * mh-seq.el (mh-delete-subject, mh-thread-next-sibling)
  2186. (mh-thread-previous-sibling, mh-thread-ancestor)
  2187. (mh-thread-delete, mh-thread-refile): Ditto.
  2188. 2005-12-14 Bill Wohler <wohler@newt.com>
  2189. * mh-customize.el (mh-speed-flists-interval): Rename to
  2190. mh-speed-update-interval.
  2191. (mh-speed-run-flists-flag): Delete. Setting
  2192. mh-speed-flists-interval to 0 accomplishes the same thing.
  2193. * mh-speed.el (mh-folder-speedbar-buttons, mh-speed-flists): Use
  2194. mh-speed-update-interval instead of mh-speed-run-flists-flag.
  2195. (mh-speed-toggle, mh-speed-view, mh-speed-refresh): Sync
  2196. docstrings with manual.
  2197. 2005-12-09 Bill Wohler <wohler@newt.com>
  2198. * mh-customize.el (mh-path): Move here from mh-init.el.
  2199. (mh-variant): Mention that mh-path can be customized.
  2200. (mh-invisible-header-fields-internal): Add X-ContentStamp,
  2201. X-MAIL-INFO, and X-UNTD- from NetZero.
  2202. * mh-init.el (mh-path): Move defcustom to mh-customize.el.
  2203. 2005-12-04 Bill Wohler <wohler@newt.com>
  2204. * mh-customize.el (mh-sortm-args): Sync docstrings with manual.
  2205. (mh-invisible-header-fields-internal): Add X-Bugzilla-* and
  2206. X-Virus-Scanned.
  2207. * mh-customize.el (mh-insert-signature-hook): Rename
  2208. mh-letter-insert-signature-hook to mh-insert-signature-hook.
  2209. * mh-comp.el (mh-insert-signature): Ditto.
  2210. * mh-customize.el (mh-fetch-x-image-url): Change default from 'ask
  2211. to nil. Remove t option. Sync docstring with manual (closes SF
  2212. #831278).
  2213. (mh-invisible-header-fields-internal): Remove X-Image-URL so that
  2214. users can see it, look it up in the manual's index, and discover
  2215. mh-fetch-x-image-url (closes SF #831278).
  2216. * mh-customize.el (mh-new-messages-folders): Rename from
  2217. mh-index-new-messages-folders.
  2218. (mh-ticked-messages-folders): Rename from
  2219. mh-index-ticked-messages-folders.
  2220. * mh-index.el (mh-index-sequenced-messages)
  2221. (mh-index-new-messages): Ditto.
  2222. * mh-comp.el (mh-forward): Went over all uses of the word "RANGE"
  2223. in the docstrings and made usage consistent. Generally speaking,
  2224. "messages in range" and "range of messages" is redundant and just
  2225. "range" can be used in most circumstances. Also ensured that
  2226. mh-interactive-range was mentioned in all interactive functions
  2227. that use a range which describes the range argument for both users
  2228. and programmers.
  2229. * mh-e.el (mh-delete-msg-no-motion, mh-refile-msg)
  2230. (mh-refile-or-write-again, mh-rescan-folder, mh-undo)
  2231. (mh-visit-folder, mh-scan-folder, mh-regenerate-headers)
  2232. (mh-notate-user-sequences, mh-delete-msg-from-seq, mh-catchup):
  2233. Ditto.
  2234. * mh-funcs.el (mh-copy-msg, mh-pack-folder, mh-pack-folder-1):
  2235. Ditto.
  2236. * mh-junk.el (mh-junk-blacklist, mh-junk-whitelist): Ditto.
  2237. * mh-print.el (mh-ps-print-range, mh-ps-print-msg)
  2238. (mh-ps-print-msg-file, mh-print-msg): Ditto.
  2239. * mh-seq.el (mh-put-msg-in-seq, mh-range-to-msg-list)
  2240. (mh-narrow-to-range, mh-toggle-tick): Ditto.
  2241. 2005-12-01 Bill Wohler <wohler@newt.com>
  2242. Rewrote Reading Mail chapter in manual which affected mh-show
  2243. customization group and related functions.
  2244. * mh-comp.el (mh-letter-mode): Use mh-highlight-citation-style
  2245. instead of mh-highlight-citation-p.
  2246. (mh-letter-toggle-header-field-display): "Ellipsed" isn't a word,
  2247. I think, so use "truncated".
  2248. * mh-customize.el (mh-folder, mh-folder-faces): Group's manual
  2249. section is Folders, not Organizing. Parent of mh-folder-faces is
  2250. mh-folder, not mh-show.
  2251. (mh-speed): Rename to mh-speedbar for consistency with mh-toolbar.
  2252. (mh-thread): New group that corresponds with manual's Threading chapter.
  2253. (mh-letter-faces): Group's manual section is Editing Drafts, not
  2254. Sending Mail.
  2255. (mh-sortm-args): New customization variable that used to be a defvar.
  2256. (mh-index-new-messages-folders, mh-index-ticked-messages-folders):
  2257. Move from mh-index group to mh-folders group.
  2258. (mh-alias-local-users-prefix, mh-large-folder)
  2259. (mh-recursive-folders-flag, mh-before-quit-hook)
  2260. (mh-folder-mode-hook, mh-kill-folder-suppress-prompt-hook)
  2261. (mh-quit-hook, mh-refile-msg-hook): Move from mh-show group to
  2262. mh-folder group.
  2263. (mh-highlight-citation-style): Rename from
  2264. mh-highlight-citation-p. Sync docstrings with manual.
  2265. (mh-mhl-format-file): Rename from mhl-formfile. Sync docstrings
  2266. with manual.
  2267. (mh-show-threads-flag): Move from mh-show group to mh-thread
  2268. group.
  2269. (mh-find-path-hook): Move from mh-show group to mh-e group.
  2270. (mh-folder-updated-hook): Add to mh-folder group.
  2271. (mh-forward-hook): Move from mh-folder to mh-sending-mail group.
  2272. (mh-unseen-updated-hook): Move from mh-show to mh-sequences group.
  2273. (mh-bury-show-buffer-flag, mh-clean-message-header-flag)
  2274. (mh-decode-mime-flag, mh-display-buttons-for-alternatives-flag)
  2275. (mh-display-buttons-for-inline-parts-flag)
  2276. (mh-do-not-confirm-flag, mh-fetch-x-image-url)
  2277. (mh-graphical-smileys-flag, mh-graphical-emphasis-flag)
  2278. (mh-invisible-header-fields-default, mh-invisible-header-fields)
  2279. (mh-lpr-command-format, mh-max-inline-image-height)
  2280. (mh-max-inline-image-width)
  2281. (mh-mime-save-parts-default-directory, mh-print-background-flag)
  2282. (mh-show-maximum-size, mh-show-use-goto-addr-flag)
  2283. (mh-show-use-xface-flag, mh-store-default-directory)
  2284. (mh-summary-height, mh-delete-msg-hook)
  2285. (mh-show-hook, mh-show-mode-hook): Sync docstrings with manual.
  2286. * mh-e.el (mh-scan-format-mh, mh-scan-good-msg-regexp)
  2287. (mh-scan-deleted-msg-regexp, mh-scan-refiled-msg-regexp)
  2288. (mh-scan-cur-msg-number-regexp, mh-scan-subject-regexp):
  2289. Use non-fontification instead of non-fontifying.
  2290. (mh-header-display): Use mh-mhl-format-file instead of
  2291. mhl-formfile. Sync docstrings with manual.
  2292. (mh-next-undeleted-msg, mh-previous-undeleted-msg): Rename arg to
  2293. count. Sync docstrings with manual.
  2294. (mh-refile-or-write-again): Use output from mh-write-msg-to-file
  2295. so that message doesn't change when using this command. Sync
  2296. docstrings with manual.
  2297. (mh-page-msg, mh-previous-page): Rename arg to lines. Sync
  2298. docstrings with manual.
  2299. (mh-write-msg-to-file): Rename msg to message. Rename no-headers
  2300. to no-header. Sync docstrings with manual.
  2301. (mh-ps-print-map): Delete keybindings for deleted commands
  2302. mh-ps-print-toggle-mime and mh-ps-print-msg-show.
  2303. (mh-help-messages): Update printing help.
  2304. (mh-delete-msg, mh-delete-msg-no-motion, mh-first-msg)
  2305. (mh-last-msg, mh-previous-unread-msg, mh-next-button)
  2306. (mh-prev-button, mh-folder-toggle-mime-part)
  2307. (mh-folder-inline-mime-part, mh-folder-save-mime-part)
  2308. (mh-next-unread-msg, mh-toggle-mime-buttons): Sync docstrings with
  2309. manual.
  2310. * mh-funcs.el (mh-sortm-args): Now a customization option and in
  2311. mh-customize.el.
  2312. (mh-pipe-msg): Rename include-headers to include-header.
  2313. Sync docstrings with manual.
  2314. (mh-burst-digest, mh-page-digest, mh-page-digest-backwards)
  2315. (mh-store-msg): Sync docstrings with manual.
  2316. * mh-mime.el (mh-mime-save-parts): Rename arg to prompt.
  2317. Sync docstrings with manual.
  2318. (mh-toggle-mh-decode-mime-flag): Use English in message, not Lisp.
  2319. Sync docstrings with manual.
  2320. (mh-mm-display-part, mh-mm-inline-message): Use
  2321. mh-highlight-citation-style instead of mh-highlight-citation-p.
  2322. (mh-press-button): Sync docstrings with manual.
  2323. (mh-display-with-external-viewer): Fix default output in
  2324. minibuffer. Sync docstrings with manual.
  2325. * mh-print.el (mh-ps-print-mime, mh-ps-print-toggle-mime):
  2326. Delete.
  2327. (mh-ps-print-color-option): Incorporate docstring from
  2328. ps-print-color-p.
  2329. (mh-ps-spool-buffer): Remove unused code. Fix indent.
  2330. Slimline docstring.
  2331. (mh-ps-spool-msg): Slimline docstring. Rename from
  2332. mh-ps-spool-a-msg. Rewrite to use existing show buffer when
  2333. available.
  2334. (mh-ps-print-range): Extract method from common code in
  2335. mh-ps-print-msg and mh-ps-print-msg-file.
  2336. (mh-ps-print-preprint): Clean docstring. Use filename "mh-%s".
  2337. (mh-ps-print-msg-show): Delete. Can use either
  2338. mh-ps-print-msg-show or mh-ps-print-msg-show to same effect with
  2339. new code in mh-ps-spool-msg.
  2340. (mh-print-msg): Use mh-mhl-format-file instead of mhl-formfile.
  2341. Sync docstrings with manual.
  2342. (mh-ps-print-msg, mh-ps-print-msg-file)
  2343. (mh-ps-print-toggle-faces, mh-ps-print-toggle-color):
  2344. Sync docstrings with manual.
  2345. * mh-utils.el (mh-show-ps-print-msg-show)
  2346. (mh-show-ps-print-toggle-mime): Delete.
  2347. (mh-show-ps-print-map): Update accordingly.
  2348. (mh-show-mode): Use mh-highlight-citation-style instead of
  2349. mh-highlight-citation-p.
  2350. (mh-show-xface, mh-display-msg): Use mh-mhl-format-file instead of
  2351. mhl-formfile.
  2352. (mh-show): Use mh-mhl-format-file instead of mhl-formfile.
  2353. Sync docstrings with manual.
  2354. (mh-show-font-lock-fontify-region, mh-modify, mh-goto-msg):
  2355. Sync docstrings with manual.
  2356. 2005-12-01 Bill Wohler <wohler@newt.com>
  2357. * mh-init.el (mh-defface-compat): Checkdoc fix.
  2358. * mh-junk.el (mh-bogofilter-blacklist, mh-bogofilter-whitelist):
  2359. Bogofilter is lowercase except at beginning of sentence and in
  2360. titles.
  2361. 2005-11-04 Bill Wohler <wohler@newt.com>
  2362. * mh-customize.el (mh-min-colors-defined-flag, mh-defface-compat):
  2363. Move to mh-init.el to minimize bulk of mh-customize.el.
  2364. * mh-init.el: Modify commentary since file is used for load and
  2365. initialization as well as setting and getting the variant.
  2366. (mh-min-colors-defined-flag, mh-defface-compat): Move here from
  2367. mh-customize.el.
  2368. * mh-customize.el: Refactor faces. Move grayscale requirements
  2369. last before t. Use uniform line breaks.
  2370. (mh-min-colors-defined-flag): New variable.
  2371. (mh-defface-compat): New function. Provides backward compatibility
  2372. for face specs.
  2373. (mh-show-header, mh-show-date, mh-show-cc, mh-folder-to)
  2374. (mh-folder-refiled, mh-folder-cur-msg-number, mh-folder-cur-msg)
  2375. (mh-folder-body): Use mh-defface-compat.
  2376. 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
  2377. * mh-customize.el (mh-folder-body-face, mh-folder-cur-msg-face)
  2378. (mh-folder-cur-msg-number-face, mh-folder-refiled-face)
  2379. (mh-folder-to-face): Use the min-colors attribute instead of the
  2380. type attribute.
  2381. 2005-11-03 Bill Wohler <wohler@newt.com>
  2382. * mh-customize.el (mh-refile-preserves-sequences-flag)
  2383. (mh-tick-seq, mh-update-sequences-after-mh-show-flag):
  2384. Sync docstrings with manual.
  2385. * mh-e.el (mh-update-sequences): Sync docstrings with manual.
  2386. * mh-seq.el (mh-delete-seq, mh-list-sequences, mh-narrow-to-seq)
  2387. (mh-widen, mh-toggle-tick, mh-narrow-to-tick): Sync docstrings
  2388. with manual.
  2389. 2005-11-01 Bill Wohler <wohler@newt.com>
  2390. * mh-comp.el (mh-redist-full-contents) Convert defvar to
  2391. defcustom.
  2392. (mh-smail, mh-extract-rejected-mail, mh-forward, mh-redistribute)
  2393. (mh-reply, mh-send, mh-send-other-window)
  2394. (mh-fill-paragraph-function): Sync docstrings with manual.
  2395. (mh-edit-again, mh-extract-rejected-mail, mh-redistribute): Rename
  2396. msg argument to message (to make for a better docstring).
  2397. * mh-customize.el (mh-redist-full-contents-flag): Convert defvar
  2398. to defcustom. Rename by adding -flag.
  2399. (mh-compose-forward-as-mime-flag)
  2400. (mh-compose-letter-function, mh-forward-subject-format)
  2401. (mh-insert-x-mailer-flag, mh-reply-default-reply-to)
  2402. (mh-reply-show-message-flag, mh-letter-mode-hook): Sync docstrings
  2403. with manual.
  2404. * mh-print.el (mh-ps-spool-buffer, mh-ps-spool-a-msg)
  2405. (mh-ps-print-msg): Remove debugging messages.
  2406. (mh-ps-print-msg-show, mh-ps-print-msg-show)
  2407. (mh-ps-print-toggle-color, mh-ps-print-toggle-mime): Remove period
  2408. after message per conventions.
  2409. 2005-10-30 Bill Wohler <wohler@newt.com>
  2410. * mh-e.el (mh-scan-good-msg-regexp, mh-scan-deleted-msg-regexp)
  2411. (mh-scan-refiled-msg-regexp, mh-scan-cur-msg-number-regexp):
  2412. Sync docstrings with manual.
  2413. * mh-customize.el (mh-compose-space-does-completion-flag)
  2414. (mh-signature-separator-flag, mh-interpret-number-as-range-flag)
  2415. (mh-adaptive-cmd-note-flag): Use "Non-nil means" instead of "On
  2416. means" to remain checkdoc clean and consistent with Emacs. I
  2417. raised this issue with the Emacs developers and Stallman agrees
  2418. that "On means" should be allowed in custom docstrings but that
  2419. this change requires thought and should wait until after the Emacs
  2420. 22 release.
  2421. 2005-10-28 Bill Wohler <wohler@newt.com>
  2422. * mh-comp.el (mh-annotate-msg): Use new variable
  2423. mh-scan-field-destination-offset rather than hard-coding 1.
  2424. * mh-customize.el (mh-interpret-number-as-range-flag): Add * to
  2425. docstring.
  2426. (mh-adaptive-cmd-note-flag-check, mh-scan-format-file-check): New
  2427. functions to check input for mh-adaptive-cmd-note-flag and
  2428. mh-scan-format-file respectively.
  2429. (mh-adaptive-cmd-note-flag, mh-scan-format-file): Docstring fixes,
  2430. add :set.
  2431. * mh-e.el (mh-scan-field-destination-offset): New variable. The
  2432. destination is the -, t, b, c, or n character for Replied, To, cc,
  2433. Bcc, or Newsgroups respectively.
  2434. (mh-make-folder, mh-regenerate-headers, mh-generate-new-cmd-note):
  2435. Call new function mh-msg-num-width-to-column to make leap between
  2436. width and column more explicit.
  2437. (mh-msg-num-width-to-column): New function that steals logic from
  2438. old mh-set-cmd-note. Also, throw error if mh-scan-format-file
  2439. isn't t since we can't adapt the scan lines in this case.
  2440. (mh-set-cmd-note): Now just simply sets mh-cmd-note which will
  2441. make the documentation more clear.
  2442. (mh-generate-new-cmd-note): Docstring fix--mh-cmd-note is a
  2443. column, not a width.
  2444. (mh-add-sequence-notation, mh-remove-sequence-notation): Use new
  2445. variable mh-scan-field-destination-offset rather than hard-coding 1.
  2446. * mh-utils.el (mh-cmd-note) Synced docstring with manual.
  2447. (mh-notate): Use new variable mh-scan-field-destination-offset
  2448. rather than hard-coding 1.
  2449. (mh-message-number-width): Rename to mh-msg-num-width to be
  2450. consistent with mh-get-msg-num and mh-msg-num-width-to-column.
  2451. * mh-customize.el (mh-x-face-file, mh-show-use-xface-flag)
  2452. (mail-citation-hook): Quote URLs in docstrings and precede with
  2453. `URL'. The former will suppress checkdoc warnings, the latter will
  2454. turn them into hyperlinks in Emacs 22 (I just added the code to do
  2455. that today).
  2456. (mh-scan-format-file): Checkdoc fix.
  2457. 2005-10-27 Bill Wohler <wohler@newt.com>
  2458. * mh-customize.el (mh-adaptive-cmd-note-flag)
  2459. (mh-scan-format-file, mh-scan-prog): Sync docstrings with manual.
  2460. * mh-e.el (mh-scan-format-mh, mh-note-deleted, mh-note-refiled)
  2461. (mh-note-cur, mh-scan-good-msg-regexp)
  2462. (mh-scan-deleted-msg-regexp, mh-scan-refiled-msg-regexp)
  2463. (mh-scan-valid-regexp, mh-scan-cur-msg-number-regexp)
  2464. (mh-scan-date-regexp, mh-scan-rcpt-regexp, mh-scan-body-regexp)
  2465. (mh-scan-subject-regexp, mh-scan-format-regexp)
  2466. (mh-folder-font-lock-keywords, mh-set-cmd-note): Sync docstrings
  2467. with manual.
  2468. * mh-funcs.el (mh-note-copied): Sync docstrings with manual.
  2469. * mh-utils.el (mh-goto-msg): Use mh-scan-msg-search-regexp instead
  2470. of hard-coded string.
  2471. (mh-mail-header-separator, mh-signature-separator-regexp):
  2472. Use "regular expression" in docstring instead of regexp.
  2473. (mh-scan-msg-number-regexp)
  2474. (mh-scan-msg-overflow-regexp, mh-scan-msg-format-regexp)
  2475. (mh-scan-msg-format-string, mh-scan-msg-search-regexp)
  2476. (mh-cmd-note): Sync docstrings with manual.
  2477. * mh-comp.el (mh-insert-signature, mh-insert-auto-fields):
  2478. Checkdoc fixes.
  2479. * mh-customize.el (mh-compose-insertion, mh-x-face-file): Ditto.
  2480. * mh-mime.el (mh-mh-to-mime, mh-mml-attach-file)
  2481. (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt)
  2482. (mh-mml-secure-message-signencrypt): Ditto.
  2483. 2005-10-24 Bill Wohler <wohler@newt.com>
  2484. * mh-gnus.el: Load mml.el in order to see if
  2485. mml-minibuffer-read-disposition is defined or not.
  2486. * mh-mime.el: Now that mh-gnus.el loads mml, we shouldn't need the
  2487. mml autoloads.
  2488. 2005-10-23 Miles Bader <miles@gnu.org>
  2489. * .arch-inventory: New file.
  2490. 2005-10-23 Bill Wohler <wohler@newt.com>
  2491. * mh-customize.el (mh-interpret-number-as-range-flag):
  2492. Sync docstring with manual.
  2493. * mh-identity.el (mh-assoc-ignore-case): Merge with version in
  2494. mh-alias.el and move to mh-acros.el.
  2495. * mh-alias.el (mh-assoc-ignore-case): Merge with version in
  2496. mh-identity.el and move to mh-acros.el.
  2497. * mh-acros.el (mh-assoc-ignore-case): Merge of function from
  2498. mh-identity.el and mh-alias.el.
  2499. * mh-mime.el: Autoload mm-uu for mm-uu-dissect to avoid compiler
  2500. warning in Emacs 22.
  2501. 2005-10-23 Satyaki Das <satyaki@theforce.stanford.edu>
  2502. * mh-identity.el (mh-assoc-ignore-case): New macro that uses
  2503. assoc-string (if the function is available) and falls back on
  2504. assoc-ignore-case if assoc-string is not found.
  2505. (mh-identity-field-handler): Use mh-assoc-ignore-case since
  2506. assoc-ignore-case is a obsolete function in Emacs 22.
  2507. * mh-e.el (mh-folder-buttons-init-flag): New variable that keeps
  2508. track of whether the tool-bar in mh-folder-mode has been
  2509. initialized yet.
  2510. (mh-folder-mode): Initialize the tool-bar for folders the first
  2511. time we get into mh-letter-mode.
  2512. * mh-customize.el (mh-buffer-exists-p): New function which tests
  2513. presence of buffers of a given mode.
  2514. (mh-tool-bar-define): New functions mh-tool-bar-folder-buttons-init and
  2515. mh-tool-bar-letter-buttons-init are defined. These functions are
  2516. used to create the tool-bar from the corresponding customizable
  2517. variables.
  2518. * mh-comp.el (mh-letter-buttons-init-flag): New variable that
  2519. keeps track of whether the tool-bar in mh-letter-mode has been
  2520. initialized yet.
  2521. (mh-letter-mode): Initialize the tool-bar for drafts the first
  2522. time we get into mh-letter-mode.
  2523. 2005-10-23 Bill Wohler <wohler@newt.com>
  2524. * mh-comp.el (mh-letter-menu): Rename
  2525. mh-mhn-compose-external-compressed-tar to
  2526. mh-mh-compose-external-compressed-tar. Rename
  2527. mh-mhn-compose-anon-ftp to mh-mh-compose-anon-ftp. Rename
  2528. mh-edit-mhn to mh-mh-to-mime. Rename mh-mhn-directive-present-p to
  2529. mh-mh-directive-present-p. Rename mh-revert-mhn-edit to
  2530. mh-mh-to-mime-undo. Rename mh-gnus-pgp-support-flag to
  2531. mh-pgp-support-flag. Rename mh-compose-insertion value from 'mhn
  2532. to 'mh.
  2533. (mh-insert-signature): Rename mh-mhn-directive-present-p to
  2534. mh-mh-directive-present-p.
  2535. (mh-send-letter): Rename mh-mhn-directive-present-p to
  2536. mh-mh-directive-present-p. Rename mh-edit-mhn to mh-mh-to-mime.
  2537. (mh-letter-mode-map): Rename mh-edit-mhn to mh-mh-to-mime. Rename
  2538. mh-mhn-compose-anon-ftp to mh-mh-compose-anon-ftp. Rename
  2539. mh-mhn-compose-external-compressed-tar to
  2540. mh-mh-compose-external-compressed-tar. Rename mh-revert-mhn-edit
  2541. to mh-mh-to-mime-undo. Rename mh-mhn-compose-external-type to
  2542. mh-mh-compose-external-type. Rename mh-mhn-compose-anon-ftp to
  2543. mh-mh-compose-anon-ftp. Rename
  2544. mh-mhn-compose-external-compressed-tar to
  2545. mh-mh-compose-external-compressed-tar. Rename mh-revert-mhn-edit
  2546. to mh-mh-to-mime-undo. Rename mh-mhn-compose-external-type to
  2547. mh-mh-compose-external-type.
  2548. (mh-send-letter, mh-letter-mode-map): Rename mh-edit-mhn to
  2549. mh-mh-to-mime, mh-revert-mhn-edit to mh-mh-to-mime-undo.
  2550. (mh-reply, mh-yank-cur-msg, mh-insert-prefix-string): Rename
  2551. mh-yank-from-start-of-msg to mh-yank-behavior.
  2552. (mh-letter-mode, mh-to-field, mh-to-fcc, mh-insert-signature)
  2553. (mh-check-whom, mh-insert-auto-fields, mh-send-letter)
  2554. (mh-insert-letter, mh-yank-cur-msg, mh-insert-prefix-string)
  2555. (mh-fully-kill-draft, mh-open-line, mh-letter-complete)
  2556. (mh-letter-complete-or-space, mh-letter-confirm-address)
  2557. (mh-letter-next-header-field-or-indent)
  2558. (mh-letter-previous-header-field)
  2559. (mh-letter-toggle-header-field-display): Sync docstrings with
  2560. manual.
  2561. * mh-customize.el (mh-edit-mhn-hook): Rename to
  2562. mh-mh-to-mime-hook.
  2563. (mh-yank-from-start-of-msg): Rename to mh-yank-behavior.
  2564. (mh-compose-insertion): Rename values from 'gnus and 'mhn to 'mh
  2565. and user-visible values from mhn and Gnus to MH and MML.
  2566. (mh-before-send-letter-hook): Add 'ispell-message option.
  2567. (mh-mml-method-default): Rename mh-gnus-pgp-support-flag to
  2568. mh-pgp-support-flag.
  2569. (mh-compose-insertion, mh-compose-space-does-completion-flag)
  2570. (mh-delete-yanked-msg-window-flag)
  2571. (mh-extract-from-attribution-verb, mh-ins-buf-prefix)
  2572. (mh-letter-complete-function, mh-letter-fill-column)
  2573. (mh-mml-method-default, mh-signature-file-name)
  2574. (mh-signature-separator-flag, mh-x-face-file)
  2575. (mh-yank-behavior, mail-citation-hook)
  2576. (mh-before-send-letter-hook, mh-mh-to-mime-hook): Sync docstrings
  2577. with manual.
  2578. * mh-gnus.el (mml-minibuffer-read-disposition): New function
  2579. provided for Emacs 21 environments that lack it.
  2580. * mh-mime.el (mh-mml-query-cryptographic-method): Use default
  2581. prompt convention.
  2582. (mh-compose-forward): mh-mh-forward-message requires string arg.
  2583. (mh-minibuffer-read-type): New function.
  2584. (mh-mhn-args): Rename to mh-mh-to-mime-args.
  2585. (mh-mhn-compose-insertion): Rename to mh-mh-attach-file.
  2586. (mh-mhn-compose-forw): Rename to mh-mh-forward-message.
  2587. (mh-mhn-compose-type): Rename to mh-mh-compose-type.
  2588. (mh-mhn-compose-anon-ftp): Rename to mh-mh-compose-anon-ftp.
  2589. Rename mh-mhn-compose-external-type to mh-mh-compose-external-type.
  2590. (mh-mhn-compose-external-compressed-tar): Rename to
  2591. mh-mh-compose-external-compressed-tar. Rename
  2592. mh-mhn-compose-external-type to mh-mh-compose-external-type.
  2593. (mh-mhn-compose-external-type): Rename to mh-mh-compose-external-type.
  2594. (mh-edit-mhn): Rename to mh-mh-to-mime. Rename mh-mhn-args to
  2595. mh-mh-to-mime-args. Rename mh-edit-mhn-hook to mh-mh-to-mime-hook.
  2596. Use correct program in message.
  2597. (mh-mhn-directive-present-p): Rename to mh-mh-directive-present-p.
  2598. (mh-mml-directive-present-p): Rename to mh-mml-tag-present-p.
  2599. (mh-compose-forward, mh-mh-attach-file)
  2600. (mh-mh-compose-anon-ftp, mh-mh-compose-external-compressed-tar)
  2601. (mh-mh-compose-external-type, mh-mh-forward-message)
  2602. (mh-mml-attach-file): Use mml-minibuffer-read-description,
  2603. mh-minibuffer-read-type.
  2604. (mh-mime-content-types): Move comment about only being used in
  2605. Emacs 20 to docstring.
  2606. (mh-mh-compose-external-type): Rename extra-param argument to
  2607. parameters.
  2608. (mh-mml-to-mime, mh-secure-message, mh-mml-unsecure-message)
  2609. (mh-mime-display-part, mh-mime-display-single): Rename
  2610. mh-gnus-pgp-support-flag to mh-pgp-support-flag.
  2611. (mh-compose-insertion): Rename mh-mhn-compose-insertion to
  2612. mh-mh-attach-file.
  2613. (mh-compose-forward): Rename mh-mhn-compose-forw to
  2614. mh-mh-forward-message.
  2615. (mh-mhn-compose-insertion): Rename mh-mhn-compose-type to
  2616. mh-mh-compose-type.
  2617. (mh-compose-insertion, mh-compose-forward, mh-mh-to-mime-args)
  2618. (mh-mh-attach-file, mh-mh-compose-type)
  2619. (mh-mh-compose-anon-ftp, mh-mh-compose-external-compressed-tar)
  2620. (mh-mh-compose-external-compressed-tar)
  2621. (mh-mh-compose-external-type, mh-mh-forward-message)
  2622. (mh-mh-to-mime, mh-mh-quote-unescaped-sharp)
  2623. (mh-mh-to-mime-undo, mh-mh-directive-present-p, mh-mml-to-mime)
  2624. (mh-mml-attach-file, mh-secure-message, mh-mml-unsecure-message)
  2625. (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt)
  2626. (mh-mml-directive-present-p, mh-destroy-postponed-handles)
  2627. (mh-display-smileys, mh-display-emphasis, mh-mime-save-parts):
  2628. Sync docstrings with manual.
  2629. * mh-utils.el (mh-gnus-pgp-support-flag): Rename to
  2630. mh-pgp-support-flag.
  2631. 2005-10-17 Peter S Galbraith <psg@debian.org>
  2632. * mh-identity.el (mh-identity-field-handler): Use `assoc-ignore-case'
  2633. to compare against header field for mixed-case "From:".
  2634. 2005-10-17 Bill Wohler <wohler@newt.com>
  2635. * mh-customize.el (mh-folder-tool-bar-map): Rename image file
  2636. left_arrow to left-arrow, right_arrow to right-arrow, mail_compose
  2637. to mail/compose, fld_open to fld-open.
  2638. (mh-letter-tool-bar-map): Rename image file mail_send to
  2639. mail/send.
  2640. 2005-10-16 Bill Wohler <wohler@newt.com>
  2641. * mh-comp.el (mh-display-completion-list-compat): New macro which
  2642. calls `display-completion-list' correctly in older environments.
  2643. Versions of Emacs prior to version 22 lacked a COMMON-SUBSTRING
  2644. argument.
  2645. (mh-complete-word): Use it.
  2646. * mh-init.el (mh-image-load-path): Use locate-library to find
  2647. MH-E. This simplified the code a lot. Flattened out nested
  2648. statements even more.
  2649. 2005-10-16 Satyaki Das <satyaki@theforce.stanford.edu>
  2650. * mh-init.el (mh-image-load-path): Remove use of pushnew since it
  2651. causes a compiler warning.
  2652. * mh-utils.el (mh-display-msg): Do MIME cleanup before inserting
  2653. the message to be viewed (closes SF #1306141).
  2654. 2005-10-16 Masatake YAMATO <jet@gyve.org>
  2655. * mh-comp.el (mh-complete-word): Pass the common prefix substring
  2656. of completion to `display-completion-list'.
  2657. 2005-10-15 Satyaki Das <satyaki@theforce.stanford.edu>
  2658. * mh-init.el (mh-image-load-path-called-flag): New variable which
  2659. is used by mh-image-load-path so that it runs only once.
  2660. (mh-image-load-path): Modify so that it gets run only once. Also
  2661. flatten out heavily nested if statements to make it clearer.
  2662. * mh-e.el (mh-folder-mode): Call mh-image-load-path to allow Emacs
  2663. to find images used in the toolbar.
  2664. * mh-customize.el (:folder): Remove call to mh-image-load-path.
  2665. 2005-10-14 Bill Wohler <wohler@newt.com>
  2666. * mh-e.el (Version, mh-version): Add +cvs to version.
  2667. 2005-10-14 Bill Wohler <wohler@newt.com>
  2668. Released MH-E version 7.85.
  2669. * mh-e.el (Version, mh-version): Update for release 7.85.
  2670. 2005-10-14 Bill Wohler <wohler@newt.com>
  2671. * mh-e.el, mh-funcs.el, mh-init.el, mh-mime.el, mh-pick.el:
  2672. * mh-seq.el, mh-utils.el: Ran mh-unit. Continued copyright lines
  2673. need to be indented.
  2674. * mh-e.el: mh-folder-tick-face had been renamed to mh-folder-tick
  2675. but the code that invoked the face had not been updated. Tick
  2676. highlighting working again.
  2677. * mh-seq.el (mh-non-seq-mode-line-annotation): Move
  2678. make-variable-buffer-local call to top level to avoid warnings in
  2679. CVS Emacs.
  2680. * mh-comp.el (mh-insert-letter): Replace deprecated read-input
  2681. with read-string.
  2682. 2005-10-09 Bill Wohler <wohler@newt.com>
  2683. * mh-init.el (mh-image-load-path): New function that adds the path
  2684. to the MH-E images to the image-load-path or load-path depending
  2685. on the version of Emacs.
  2686. * mh-customize.el: Call mh-image-load-path just before
  2687. mh-tool-bar-define so that the toolbar images can be found.
  2688. 2005-10-04 Bill Wohler <wohler@newt.com>
  2689. * ChangeLog: Move contents into ChangeLog.1 and trim.
  2690. * ChangeLog.1: New file. Contains old ChangeLog.
  2691. Copyright (C) 2005-2012 Free Software Foundation, Inc.
  2692. This file is part of GNU Emacs.
  2693. GNU Emacs is free software: you can redistribute it and/or modify
  2694. it under the terms of the GNU General Public License as published by
  2695. the Free Software Foundation, either version 3 of the License, or
  2696. (at your option) any later version.
  2697. GNU Emacs is distributed in the hope that it will be useful,
  2698. but WITHOUT ANY WARRANTY; without even the implied warranty of
  2699. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  2700. GNU General Public License for more details.
  2701. You should have received a copy of the GNU General Public License
  2702. along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  2703. ;; Local Variables:
  2704. ;; coding: utf-8
  2705. ;; sentence-end-double-space: nil
  2706. ;; add-log-time-zone-rule: t
  2707. ;; End: