Re: Exit on Amaya7.2 and emacs

I do use both and never had this problem... 

What is your window manager ?

Until we can reproduce the bug,
you should add this to your .emacs :

;; ...never quit by mistake...
(global-set-key [(control x) (control c)]
  (function
   (lambda () (interactive)
     (cond ((y-or-n-p "Quit editor? ")
            (save-buffers-kill-emacs))))))

Received on Friday, 7 February 2003 04:30:20 UTC