home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / gnu / emacs / bug / 1200 < prev    next >
Encoding:
Text File  |  1992-08-18  |  1.0 KB  |  37 lines

  1. Newsgroups: gnu.emacs.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!gr.osf.ORG!jose
  3. From: jose@gr.osf.ORG
  4. Subject: possible bug in rmail-reply command
  5. Message-ID: <9208180902.AA00911@naja.gr.osf.org>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Tue, 18 Aug 1992 01:02:44 GMT
  10. Approved: bug-gnu-emacs@prep.ai.mit.edu
  11. Lines: 24
  12.  
  13. Hi,
  14.  
  15. I found a possible bug in the rmail-reply command: when you reply, the
  16. Re: field is not inserted in the subject field. Besides, if the
  17. subject already contains the Re: field, it gets deleted.
  18.  
  19. I think I spotted the place where the problem happens to be: in the
  20. file rmail.el, lines 1245 and 1246:
  21.  
  22.      (string-match "\\`Re: " subject)
  23.      (setq subject (substring subject 4)))
  24.  
  25. should be replaced by something more like:
  26.  
  27.      (not (string-match "\\`Re: " subject))
  28.      (setq subject (concat "Re: " subject )))
  29.  
  30. I don't know if this is the right thing to do since I am not a Lisp
  31. specialist, but apparently it seems to correct the problem.
  32.  
  33. Thank's.
  34.  
  35. Jose Rogado (jose@gr.osf.org)
  36.  
  37.