home *** CD-ROM | disk | FTP | other *** search
- Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
- Path: sparky!uunet!paladin.american.edu!auvm!UGA.CC.UGA.EDU!HAROLD
- Message-ID: <MAILBOOK%93012212470579@UGA.CC.UGA.EDU>
- Newsgroups: bit.listserv.mailbook
- Date: Fri, 22 Jan 1993 12:42:35 EST
- Sender: RiceMail discussion list <MAILBOOK@RICEVM1.BITNET>
- From: Harold Pritchett <HAROLD@UGA.CC.UGA.EDU>
- Subject: Re: Another SPELLCHK question
- In-Reply-To: Message of Fri, 22 Jan 1993 11:14:22 LCL from <BJONES@UNF1VM>
- Lines: 27
-
- On Fri, 22 Jan 1993 11:14:22 LCL Bob Jones said:
- >Perhaps I am missing something...Is there a way to keep SPELLFIX
- >out of the header area? Is there a possibility of damage if it
- >corrects something there? Is this a problem? Thanks.
-
- Here is a little file called PROOF XEDIT which we use here to invoke
- the IBM OfficeVision spell checker on a mail message. The body of
- the mail is saved in a file, and then the spell checker is invoked
- on it. On exit from the spell checker, the body is re-imported into
- the mail message. The same idea should work with any spell checker
- which works interactively on a file.
-
- Harold
- ------------------------ PROOF XEDIT ----------------------------------
- /* Xedit exec to proofread mail */
- set msgmode off
- top
- locate '/=======================================================/'
- next
- putd '+*' userid() $proof$ a
- epsproof userid() $proof$ a
- get userid() $proof$ a
- erase userid() $proof$ a
- top
- locate '/=======================================================/'
- next
- set msgmode on
-