unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Magnus Henoch <mange@freemail.hu>
To: help-gnu-emacs@gnu.org
Subject: Re: Die IDN!
Date: Wed, 28 Nov 2007 15:03:02 +0100	[thread overview]
Message-ID: <87lk8iwjqh.fsf@freemail.hu> (raw)
In-Reply-To: 873aurs5ug.fsf@W0053328.mgh.harvard.edu

jadamson@partners.org (Joel J. Adamson) writes:

> Is there some way I can automatically kill idn: it comes on when I use
> org mode, then ties up my flash drive (i.e. process doesn't die when
> it's done doing whatever it does).  The same thing happens with aspell
> (but only when I invoke ispell).  I'm not sure which Emacs function
> starts idn, although obviously ispell starts aspell.

Not automatically, but at least interactively:

(defun delete-process-interactively (process)
  "Delete PROCESS.  Query interactively."
  (interactive (list
		(completing-read-multiple
		 "Delete process(es): "
		 (mapcar #'(lambda (p)
			     (cons (process-name p) nil))
			 (process-list))
		 nil t)))
  (mapc 'delete-process process))

Magnus

  reply	other threads:[~2007-11-28 14:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-11-27 22:04 Die IDN! Joel J. Adamson
2007-11-28 14:03 ` Magnus Henoch [this message]
     [not found] ` <mailman.4240.1196258600.18990.help-gnu-emacs@gnu.org>
2007-11-28 15:58   ` Joel J. Adamson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87lk8iwjqh.fsf@freemail.hu \
    --to=mange@freemail.hu \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).