obscurity writes:
Uh...this turned out to be a problem with the interface between
keyboard and
chair. I was exiting the gnuclient with 'save-buffers-kill-emacs' rather
than 'delete-frame'. I need to find a way of getting my .emacs to set my
keys differently if I'm running gnuclient rather than xemacs :)
(defun delete-frame-or-save-buffers-kill-emacs (&optional frame)
"If there is only one frame, `save-buffers-kill-emacs', else
`delete-frame'."
(interactive)
(delete-frame frame t))
(global-set-key [(control x) (5) (0)] 'delete-frame-or-save-buffers-kill-emacs)