home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / emacs / 3019 < prev    next >
Encoding:
Text File  |  1992-09-02  |  871 b   |  27 lines

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!princeton!siemens!jrv
  2. From: jrv@siemens.com. (Jim Vallino)
  3. Newsgroups: comp.emacs
  4. Subject: Re: auto-fill-mode in mail mode
  5. Message-ID: <102344@siemens.siemens.com>
  6. Date: 2 Sep 92 20:46:00 GMT
  7. References: <61111@aurs01.UUCP> <61112@aurs01.UUCP>
  8. Sender: news@siemens.siemens.com
  9. Reply-To: jrv@siemens.siemens.com
  10. Organization: Siemens Corporate Research, Inc.
  11. Lines: 14
  12.  
  13. Here's what I use for that:
  14.  
  15. ;; this is for filling mail
  16. (setq mail-mode-hook 'my-mail-mode-hook)
  17. (defun my-mail-mode-hook()
  18.   (auto-fill-mode 1)
  19.   (setq fill-column 78))
  20.  
  21. Just changing the 78 to 75 should set it up for you.
  22. --
  23. Jim Vallino
  24. jrv@siemens.siemens.com            Siemens Corporate Research, Inc.
  25. princeton!siemens!jrv              755 College Road East
  26. (609) 734-3331                     Princeton, NJ 08540
  27.