home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.emacs.help
- Path: sparky!uunet!cis.ohio-state.edu!splinter.coe.northeastern.edu!ratinox
- From: ratinox@splinter.coe.northeastern.edu (Richard Pieri/Stainless Steel Rat)
- Subject: dired rmail
- Message-ID: <gnusenetRATINOX.92Sep7152305@splinter.coe.northeastern.edu>
- Followup-To: gnu.emacs
- Sender: gnulists@ai.mit.edu
- Reply-To: ratinox@meceng.coe.northeastern.edu
- Organization: 3WA, Boston Office. Or Nu Meta Chi. Take your pick.
- Date: Mon, 7 Sep 1992 19:23:05 GMT
- Lines: 25
-
- A while back, someone asked about being able to run Rmail on a file in a
- dired mode buffer. So I was hacking around and figured it couldn't be that
- difficult to do, so...
-
- (defun dired-rmail ()
- "Run Rmail on this file."
- (interactive)
- (rmail-input (dired-get-filename)))
-
- It can be bound to "R" inside dired-mode hook with
-
- (setq dired-mode-hook
- (local-set-key "R" 'dired-rmail))
-
- --Rat
-
- ||||| | | | | | | | | | | | | | | | | | | | | | | |||||
- __ ___
- Richard Pieri, Northeastern's Stainless Steel Rat/ | /| / / | The Worlds
- Internet: ratinox@meceng.coe.northeastern.edu /__ |/ |/ / /| | Welfare Works
- UUCP: ...!northeastern.edu!meceng!ratinox / | /| / / / | | Association:
- BITNET: UA_RLP@NUHUB{.BITNET} /__ |/ |/ / / | | I will solve
- USNail: 14 Westdale RD Holbrook, MA 02343 / | /| / / /___| | any problem
- ICBMnet: 42 deg 1 min N, 71 deg 0 min W / |/ |/ /_//_____| for you.
-
-