Path: utzoo!attcan!uunet!talos!kjones From: kjones@talos.pm.com (Kyle Jones) Newsgroups: comp.emacs Subject: Re: gnu kill-emacs without worrying about running processes Message-ID: <1990Jun29.154754.29535@talos.pm.com> Date: 29 Jun 90 15:47:54 GMT References: Lines: 16 Gilbert Harman writes: > When I exit emacs, I would like it to ask me about unsaved > buffers but not about running processes. (It may or may not > be relevant that I am using the saveconf.el stuff to save my > context, so that I can begin next time where I left off.) It is not relevant. > Any suggestions? (defun exit-emacs (arg) (interactive "P") (mapcar 'process-kill-without-query (process-list)) (save-buffers-kill-emacs arg)) Bind this function to C-x C-c and you're all set.