Function: tpu-toggle-control-keys
tpu-toggle-control-keys is an interactive and byte-compiled function
defined in tpu-edt.el.gz.
Signature
(tpu-toggle-control-keys)
Documentation
Toggle control key bindings between TPU-edt and Emacs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-toggle-control-keys nil
"Toggle control key bindings between TPU-edt and Emacs."
(interactive)
(tpu-reset-control-keys (not tpu-control-keys))
(and (called-interactively-p 'interactive)
(message "Control keys function with %s bindings."
(if tpu-control-keys "TPU-edt" "Emacs"))))