5 lines
136 B
EmacsLisp
5 lines
136 B
EmacsLisp
(rot13-string "abc") ;=> "nop"
|
|
(with-temp-buffer
|
|
(insert "abc")
|
|
(rot13-region (point-min) (point-max))
|
|
(buffer-string)) ;=> "nop"
|