Function: landmark-human-resigns
landmark-human-resigns is an interactive and byte-compiled function
defined in landmark.el.gz.
Signature
(landmark-human-resigns)
Documentation
Signal to the Landmark program that you may want to resign.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
(defun landmark-human-resigns ()
"Signal to the Landmark program that you may want to resign."
(interactive)
(landmark-switch-to-window)
(cond
(landmark-emacs-is-computing
(landmark-crash-game))
((not landmark-game-in-progress)
(message "There is no game in progress"))
((y-or-n-p "You mean, you resign? ")
(landmark-terminate-game 'human-resigned))
((y-or-n-p "You mean, we continue? ")
(landmark-prompt-for-move))
(t
(landmark-terminate-game 'human-resigned)))) ; OK. Accept it