Function: rot13-other-window
rot13-other-window is an autoloaded, interactive and byte-compiled
function defined in rot13.el.gz.
Signature
(rot13-other-window)
Documentation
Display current buffer in ROT13 in another window.
The text itself is not modified, only the way it is displayed is affected.
To terminate the ROT13 display, delete that window. As long as that window is not deleted, any buffer displayed in it will become instantly encoded in ROT13.
See also toggle-rot13-mode.
Probably introduced at or before Emacs version 19.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/rot13.el.gz
;;;###autoload
(defun rot13-other-window ()
"Display current buffer in ROT13 in another window.
The text itself is not modified, only the way it is displayed is affected.
To terminate the ROT13 display, delete that window. As long as that window
is not deleted, any buffer displayed in it will become instantly encoded
in ROT13.
See also `toggle-rot13-mode'."
(interactive)
(let ((w (display-buffer (current-buffer) t)))
(set-window-display-table w rot13-display-table)))