Function: rot13-string
rot13-string is an autoloaded and byte-compiled function defined in
rot13.el.gz.
Signature
(rot13-string STRING)
Documentation
Return ROT13 encryption of STRING.
Source Code
;; Defined in /usr/src/emacs/lisp/rot13.el.gz
;;;###autoload
(defun rot13-string (string)
"Return ROT13 encryption of STRING."
(with-temp-buffer
(insert string)
(rot13-region (point-min) (point-max))
(buffer-string)))