all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emmanuel Briot <briot@act-europe.fr>
Cc: laurent.guerby@bnpparibas.com, report@gnat.com
Subject: kill-compilation in Emacs 21 NT   (ACT tracking number: B514-001)
Date: Tue, 14 May 2002 14:36:13 +0200	[thread overview]
Message-ID: <200205141236.g4ECaD519842@lyon.act-europe.fr> (raw)


Dear Emacs maintainers:


In GNU Emacs 21.2.1, on Windows NT:

The following bug has been reported by one of our customers: the command
kill-compilation doesn't work in a compilation buffer (C-c C-k).

The workaround is to replace the definition of kill-compilation with


compile.el:

   (defun kill-compilation ()
     "Kill the process made by the \\[compile] command."
     (interactive)
     (let ((buffer (compilation-find-buffer)))
       (if (get-buffer-process buffer)
           (progn
             (interrupt-process (get-buffer-process buffer))
             (sit-for 1)
             (delete-process (get-buffer-process buffer)))
        (error "The compilation process is not running"))))

                 reply	other threads:[~2002-05-14 12:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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

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

  git send-email \
    --in-reply-to=200205141236.g4ECaD519842@lyon.act-europe.fr \
    --to=briot@act-europe.fr \
    --cc=laurent.guerby@bnpparibas.com \
    --cc=report@gnat.com \
    /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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.