comparison lisp/mail/rnews.el @ 25276:a0a1a3da1af4

Fix maintainer address.
author Karl Heuer <kwzh@gnu.org>
date Mon, 16 Aug 1999 03:50:59 +0000
parents d84de2f4c38d
children cbe304a26771
comparison
equal deleted inserted replaced
25275:1b1edbd429ea 25276:a0a1a3da1af4
27 ;; Created Sun Mar 10,1985 at 21:35:01 ads and sundar@hernes.ai.mit.edu 27 ;; Created Sun Mar 10,1985 at 21:35:01 ads and sundar@hernes.ai.mit.edu
28 ;; Should do the point pdl stuff sometime 28 ;; Should do the point pdl stuff sometime
29 ;; finito except pdl.... Sat Mar 16,1985 at 06:43:44 29 ;; finito except pdl.... Sat Mar 16,1985 at 06:43:44
30 ;; lets keep the summary stuff out until we get it working .. 30 ;; lets keep the summary stuff out until we get it working ..
31 ;; sundar@hermes.ai.mit.edu Wed Apr 10,1985 at 16:32:06 31 ;; sundar@hermes.ai.mit.edu Wed Apr 10,1985 at 16:32:06
32 ;; hack slash maim. mly@prep.ai.mit.edu Thu 18 Apr, 1985 06:11:14 32 ;; hack slash maim. mly@gnu.org Thu 18 Apr, 1985 06:11:14
33 ;; modified to correct reentrance bug, to not bother with groups that 33 ;; modified to correct reentrance bug, to not bother with groups that
34 ;; received no new traffic since last read completely, to find out 34 ;; received no new traffic since last read completely, to find out
35 ;; what traffic a group has available much more quickly when 35 ;; what traffic a group has available much more quickly when
36 ;; possible, to do some completing reads for group names - should 36 ;; possible, to do some completing reads for group names - should
37 ;; be much faster... 37 ;; be much faster...
38 ;; KING@KESTREL.arpa, Thu Mar 13 09:03:28 1986 38 ;; KING@KESTREL.arpa, Thu Mar 13 09:03:28 1986
39 ;; made news-{next,previous}-group skip groups with no new messages; and 39 ;; made news-{next,previous}-group skip groups with no new messages; and
40 ;; added checking for unsubscribed groups to news-add-news-group 40 ;; added checking for unsubscribed groups to news-add-news-group
41 ;; tower@prep.ai.mit.edu Jul 18 1986 41 ;; tower@gnu.org Jul 18 1986
42 ;; bound rmail-output to C-o; and changed header-field commands binding to 42 ;; bound rmail-output to C-o; and changed header-field commands binding to
43 ;; agree with the new C-c C-f usage in sendmail 43 ;; agree with the new C-c C-f usage in sendmail
44 ;; tower@prep Sep 3 1986 44 ;; tower@prep Sep 3 1986
45 ;; added news-rotate-buffer-body 45 ;; added news-rotate-buffer-body
46 ;; tower@prep Oct 17 1986 46 ;; tower@prep Oct 17 1986
919 "/" (if number 919 "/" (if number
920 (prefix-numeric-value number) 920 (prefix-numeric-value number)
921 news-current-message-number)) 921 news-current-message-number))
922 newname)) 922 newname))
923 923
924 ;;; caesar-region written by phr@prep.ai.mit.edu Nov 86 924 ;;; caesar-region written by phr@gnu.org Nov 86
925 ;;; modified by tower@prep Nov 86 925 ;;; modified by tower@prep Nov 86
926 (defun caesar-region (&optional n) 926 (defun caesar-region (&optional n)
927 "Caesar rotation of region by N, default 13, for decrypting netnews." 927 "Caesar rotation of region by N, default 13, for decrypting netnews."
928 (interactive (if current-prefix-arg ; Was there a prefix arg? 928 (interactive (if current-prefix-arg ; Was there a prefix arg?
929 (list (prefix-numeric-value current-prefix-arg)) 929 (list (prefix-numeric-value current-prefix-arg))
957 (goto-char from) 957 (goto-char from)
958 (kill-region from to) 958 (kill-region from to)
959 (insert str))))) 959 (insert str)))))
960 960
961 ;;; news-caesar-buffer-body written by paul@media-lab.mit.edu Wed Oct 1, 1986 961 ;;; news-caesar-buffer-body written by paul@media-lab.mit.edu Wed Oct 1, 1986
962 ;;; hacked further by tower@prep.ai.mit.edu 962 ;;; hacked further by tower@gnu.org
963 (defun news-caesar-buffer-body (&optional rotnum) 963 (defun news-caesar-buffer-body (&optional rotnum)
964 "Caesar rotates all letters in the current buffer by 13 places. 964 "Caesar rotates all letters in the current buffer by 13 places.
965 Used to encode/decode possibly offensive messages (commonly in net.jokes). 965 Used to encode/decode possibly offensive messages (commonly in net.jokes).
966 With prefix arg, specifies the number of places to rotate each letter forward. 966 With prefix arg, specifies the number of places to rotate each letter forward.
967 Mail and USENET news headers are not rotated." 967 Mail and USENET news headers are not rotated."