From 65601edb01ab7dab219cb7e4e0cd960aee06c64e Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Sat, 27 Jan 2001 14:22:20 +0000 Subject: [PATCH] Handle the case of the user closing the display using a window manager gesture. I had hoped to be able to just return to tty mode and maybe restart hemlock later (via (ed)), but there is a lot of hidden state pointing to the old (closed) display object which caused subsequent failure. This fix assumes the user closed hemlock because he wanted to exit and does just that. --- hemlock/input.lisp | 47 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 6 deletions(-) diff --git a/hemlock/input.lisp b/hemlock/input.lisp index 7d4186561..b7e9a9f2f 100644 --- a/hemlock/input.lisp +++ b/hemlock/input.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/input.lisp,v 1.6 1997/01/18 14:31:54 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/input.lisp,v 1.7 2001/01/27 14:22:20 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -167,6 +167,19 @@ ;;; (defparameter editor-abort-key-events (list #k"Control-g" #k"Control-G")) +(defun cleanup-for-wm-closed-display(closed-display) + ;; Remove fd-handlers + (ext:disable-clx-event-handling closed-display) + ;; Close file descriptor and note DEAD. + (xlib:close-display closed-display) + ;; + ;; At this point there is not much sense to returning to Lisp + ;; as the editor cannot be re-entered (there are lots of pointers + ;; to the dead display around that will cause subsequent failures). + ;; Maybe could switch to tty mode then (save-all-files-and-exit)? + ;; For now, just assume user wanted an easy way to kill the session. + (ext:quit)) + (defmacro abort-key-event-p (key-event) `(member ,key-event editor-abort-key-events)) @@ -187,12 +200,34 @@ ;;; input method (recursively even). ;;; (eval-when (compile eval) + (defmacro editor-input-method-macro () - `(handler-bind ((error #'(lambda (condition) - (let ((device (device-hunk-device - (window-hunk (current-window))))) - (funcall (device-exit device) device)) - (invoke-debugger condition)))) + `(handler-bind + ((error + (lambda (condition) + (when (typep condition 'stream-error) + (let* ((stream (stream-error-stream condition)) + (display *editor-windowed-input*) + (display-stream + #+CLX + (and display (xlib::display-input-stream display)))) + (when (eq stream display-stream) + ;;(format *error-output* "~%Hemlock: Display died!~%~%") + (cleanup-for-wm-closed-display display) + (exit-hemlock nil)) + (let ((device + (device-hunk-device (window-hunk (current-window))))) + (funcall (device-exit device) device)) + (invoke-debugger condition))))) + #+(and CLX ) + (xlib:closed-display + (lambda(condition) + (let ((display (xlib::closed-display-display condition))) + (format *error-output* + "Closed display on stream ~a~%" + (xlib::display-input-stream display))) + (exit-hemlock nil))) + ) ; (when *in-hemlock-stream-input-method* ; (error "Entering Hemlock stream input method recursively!")) (let ((*in-hemlock-stream-input-method* t) -- GitLab