comparison lisp/mail/rnews.el @ 25278:cbe304a26771

Fix maintainer address.
author Karl Heuer <kwzh@gnu.org>
date Mon, 16 Aug 1999 04:04:27 +0000
parents a0a1a3da1af4
children 03d8424273d3
comparison
equal deleted inserted replaced
25277:a0e61cfa2529 25278:cbe304a26771
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@gnu.org 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@gnu.org Sep 3 1986
45 ;; added news-rotate-buffer-body 45 ;; added news-rotate-buffer-body
46 ;; tower@prep Oct 17 1986 46 ;; tower@gnu.org Oct 17 1986
47 ;; made messages more user friendly, cleaned up news-inews 47 ;; made messages more user friendly, cleaned up news-inews
48 ;; move posting and mail code to new file rnewpost.el 48 ;; move posting and mail code to new file rnewpost.el
49 ;; tower@prep Oct 29 1986 49 ;; tower@gnu.org Oct 29 1986
50 ;; added caesar-region, rename news-caesar-buffer-body, hacked accordingly 50 ;; added caesar-region, rename news-caesar-buffer-body, hacked accordingly
51 ;; tower@prep Nov 21 1986 51 ;; tower@gnu.org Nov 21 1986
52 ;; added tower@prep 22 Apr 87 52 ;; added tower@gnu.org 22 Apr 87
53 53
54 ;;; Code: 54 ;;; Code:
55 55
56 (require 'mail-utils) 56 (require 'mail-utils)
57 (require 'sendmail) 57 (require 'sendmail)
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@gnu.org Nov 86 924 ;;; caesar-region written by phr@gnu.org Nov 86
925 ;;; modified by tower@prep Nov 86 925 ;;; modified by tower@gnu.org 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))
930 (list nil))) 930 (list nil)))