Function: edt-emulation-off
edt-emulation-off is an interactive and byte-compiled function defined
in edt.el.gz.
Signature
(edt-emulation-off)
Documentation
Select original global key bindings, disabling EDT Emulation.
Probably introduced at or before Emacs version 18.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-emulation-off()
"Select original global key bindings, disabling EDT Emulation."
(interactive)
(use-global-map global-map)
(if (not edt-keep-current-page-delimiter)
(setq page-delimiter edt-orig-page-delimiter))
(setq edt-direction-string "")
(setq edt-select-mode-current nil)
(edt-reset)
(force-mode-line-update t)
(setq-default transient-mark-mode edt-orig-transient-mark-mode)
(message "Original key bindings restored; EDT Emulation disabled"))