]> code.delx.au - gnu-emacs/blobdiff - lisp/obsolete/rnews.el
Close bug#3992.
[gnu-emacs] / lisp / obsolete / rnews.el
index cb2ed034ffc96daa72e86027d96f76b45174f6c8..5b0f5d5a6b0b9f4ef06a7cead5fca1677dbfbdd3 100644 (file)
@@ -1,16 +1,17 @@
 ;;; rnews.el --- USENET news reader for GNU Emacs
 
-;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
+;; Copyright (C) 1985, 1986, 1987, 2001, 2002, 2003, 2004,
+;;   2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: news
 
 ;; This file is part of GNU Emacs.
 
-;; GNU Emacs is free software; you can redistribute it and/or modify
+;; GNU Emacs is free software: you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 2, or (at your option)
-;; any later version.
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; This file has been obsolete since Emacs 21.1.
 
 ;;; Change Log:
 
 ;;     tower@gnu.org Nov 21 1986
 ;; added tower@gnu.org 22 Apr 87
 
-;;; Commentary:
-
 ;;; Code:
 
 (require 'mail-utils)
 (require 'sendmail)
 
+(defvar caesar-translate-table)
+(defvar minor-modes)
+(defvar news-buffer-save)
+(defvar news-group-name)
+(defvar news-minor-modes)
+
 (autoload 'rmail-output "rmailout"
   "Append this message to Unix mail file named FILE-NAME."
   t)
@@ -265,19 +272,6 @@ Type \\[describe-mode] once reading news to get a list of rnews commands."
       (news-push (cons news-current-news-group news-current-certifiable)
                 news-current-certifications))))
 
-(defun news-set-minor-modes ()
-  "Creates a minor mode list that has group name, total articles,
-and attribute for current article."
-  (setq news-minor-modes (list (cons 'foo
-                                    (concat news-current-message-number
-                                            "/"
-                                            news-total-current-group
-                                            (news-get-attribute-string)))))
-  ;; Detect Emacs versions 18.16 and up, which display
-  ;; directly from news-minor-modes by using a list for mode-name.
-  (or (boundp 'minor-mode-alist)
-      (setq minor-modes news-minor-modes)))
-
 (defun news-set-message-counters ()
   "Scan through current news-groups filelist to figure out how many messages
 are there. Set counters for use with minor mode display."
@@ -375,7 +369,7 @@ U       unsubscribe from specified newsgroup."
   (set-syntax-table text-mode-syntax-table)
   (use-local-map news-mode-map)
   (setq local-abbrev-table text-mode-abbrev-table)
-  (run-hooks 'news-mode-hook))
+  (run-mode-hooks 'news-mode-hook))
 
 (defun string-subst-char (new old string)
   (let (index)
@@ -459,8 +453,7 @@ to a list (a . b)"
   "Display all the news groups to which you belong."
   (interactive)
   (with-output-to-temp-buffer "*Newsgroups*"
-    (save-excursion
-      (set-buffer standard-output)
+    (with-current-buffer standard-output
       (insert
        "News Group        Msg No.       News Group        Msg No.\n")
       (insert
@@ -886,7 +879,7 @@ Using ls was found to be too slow in a previous version."
                    (progn
                      (message
                       "Added %s to your list of newsgroups." gp)
-                     (end-of-buffer)
+                     (goto-char (point-max))
                      (insert gp ": 1-1\n")))
                  (search-backward gp nil t)
                  (let (start end endofline tem)
@@ -984,5 +977,5 @@ Mail and USENET news headers are not rotated."
 
 (provide 'rnews)
 
-;;; arch-tag: c032a20b-cafb-466c-b3fa-5be404a18f8c
+;; arch-tag: c032a20b-cafb-466c-b3fa-5be404a18f8c
 ;;; rnews.el ends here