Function: server-handle-suspend-tty

server-handle-suspend-tty is a byte-compiled function defined in server.el.gz.

Signature

(server-handle-suspend-tty TERMINAL)

Documentation

Notify the client process that its tty device is suspended.

Source Code

;; Defined in /usr/src/emacs/lisp/server.el.gz
      (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.

(defun server-handle-suspend-tty (terminal)
  "Notify the client process that its tty device is suspended."
  (dolist (proc (server-clients-with 'terminal terminal))
    (server-log (format "server-handle-suspend-tty, terminal %s" terminal)
                proc)
    (condition-case nil
	(server-send-string proc "-suspend \n")
      (file-error                       ;The pipe/socket was closed.
       (ignore-errors (server-delete-client proc))))))