all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* kill-compilation in Emacs 21 NT   (ACT tracking number: B514-001)
@ 2002-05-14 12:36 Emmanuel Briot
  0 siblings, 0 replies; only message in thread
From: Emmanuel Briot @ 2002-05-14 12:36 UTC (permalink / raw)
  Cc: laurent.guerby, report


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"))))

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-05-14 12:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-14 12:36 kill-compilation in Emacs 21 NT (ACT tracking number: B514-001) Emmanuel Briot

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.