Function: toggle-rot13-mode
toggle-rot13-mode is an autoloaded, interactive and byte-compiled
function defined in rot13.el.gz.
Signature
(toggle-rot13-mode)
Documentation
Toggle the use of ROT13 encoding for the current window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/rot13.el.gz
;;;###autoload
(defun toggle-rot13-mode ()
"Toggle the use of ROT13 encoding for the current window."
(interactive)
(if (eq (window-display-table) rot13-display-table)
(set-window-display-table (selected-window) nil)
(if (null (window-display-table))
(set-window-display-table (selected-window) rot13-display-table))))