comparison lisp/rot13.el @ 38038:f874bc96a6a5

(rot13-other-window): Some more doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 14 Jun 2001 15:42:57 +0000
parents ddb7488bec81
children 253f761ad37b
comparison
equal deleted inserted replaced
38037:86d2c9c368e8 38038:f874bc96a6a5
46 "Char table for rot 13 display.") 46 "Char table for rot 13 display.")
47 47
48 ;;;###autoload 48 ;;;###autoload
49 (defun rot13-other-window () 49 (defun rot13-other-window ()
50 "Display current buffer in rot 13 in another window. 50 "Display current buffer in rot 13 in another window.
51 To terminate the rot13 display, delete that window. 51 The text itself is not modified, only the way it is displayed is affected.
52
53 To terminate the rot13 display, delete that window. As long as that window
54 is not deleted, any buffer displayed in it will become instantly encoded
55 in rot 13.
56
52 See also `toggle-rot13-mode'." 57 See also `toggle-rot13-mode'."
53 (interactive) 58 (interactive)
54 (let ((w (display-buffer (current-buffer) t))) 59 (let ((w (display-buffer (current-buffer) t)))
55 (set-window-display-table w rot13-display-table))) 60 (set-window-display-table w rot13-display-table)))
56 61