*** pub/rgnus/lisp/dgnushack.el Sun Jan 5 09:39:03 1997 --- rgnus/lisp/dgnushack.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; dgnushack.el --- a hack to set the load path for byte-compiling ! ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Version: 4.19 --- 1,5 ---- ;;; dgnushack.el --- a hack to set the load path for byte-compiling ! ;; Copyright (C) 1994,95,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Version: 4.19 *** pub/rgnus/lisp/gnus-art.el Mon Jan 6 11:21:53 1997 --- rgnus/lisp/gnus-art.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; gnus-art.el --- article mode commands for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-art.el --- article mode commands for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 920,926 **** (save-restriction (let ((buffer-read-only nil)) (when (gnus-article-narrow-to-signature) ! (gnus-article-hide-text-type (point-min) (point-max) 'signature))))))) (defun article-strip-leading-blank-lines () "Remove all blank lines from the beginning of the article." --- 920,927 ---- (save-restriction (let ((buffer-read-only nil)) (when (gnus-article-narrow-to-signature) ! (gnus-article-hide-text-type ! (point-min) (point-max) 'signature))))))) (defun article-strip-leading-blank-lines () "Remove all blank lines from the beginning of the article." *************** *** 1049,1055 **** beg) (while (setq beg (text-property-any end (point-max) 'article-type type)) (goto-char beg) ! (setq end (text-property-not-all beg (point-max) 'article-type type)) (if hide (gnus-article-hide-text beg end gnus-hidden-properties) (gnus-article-unhide-text beg end)) --- 1050,1058 ---- beg) (while (setq beg (text-property-any end (point-max) 'article-type type)) (goto-char beg) ! (setq end (or ! (text-property-not-all beg (point-max) 'article-type type) ! (point-max))) (if hide (gnus-article-hide-text beg end gnus-hidden-properties) (gnus-article-unhide-text beg end)) *************** *** 2948,2953 **** --- 2951,2958 ---- (select-window (get-buffer-window gnus-article-buffer t)) (gnus-article-prev-page) (select-window win))) + + (gnus-ems-redefine) (provide 'gnus-art) *** pub/rgnus/lisp/gnus-async.el Sat Jan 4 11:45:56 1997 --- rgnus/lisp/gnus-async.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; gnus-async.el --- asynchronous support for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-async.el --- asynchronous support for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-bcklg.el Fri Dec 13 05:30:16 1996 --- rgnus/lisp/gnus-bcklg.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; gnus-bcklg.el --- backlog functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-bcklg.el --- backlog functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-cache.el Sat Jan 4 10:28:30 1997 --- rgnus/lisp/gnus-cache.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; gnus-cache.el --- cache interface for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-cache.el --- cache interface for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-cite.el Sun Jan 5 10:49:53 1997 --- rgnus/lisp/gnus-cite.el Thu Jan 9 11:59:43 1997 *************** *** 1,5 **** ;;; gnus-cite.el --- parse citations in articles for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Keywords: news, mail --- 1,5 ---- ;;; gnus-cite.el --- parse citations in articles for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Keywords: news, mail *** pub/rgnus/lisp/gnus-demon.el Sun Jan 5 19:19:21 1997 --- rgnus/lisp/gnus-demon.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-demon.el --- daemonic Gnus behaviour ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-demon.el --- daemonic Gnus behaviour ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 184,193 **** (unless (zerop time) (setcar (nthcdr 1 handler) (decf time))) (and (zerop time) ; If the timer now is zero... ! (or (not (setq idle (nth 2 handler))) ; Don't care about idle. ! (and (numberp idle) ; Numerical idle... ! (< idle gnus-demon-idle-time)) ; Idle timed out. ! idle) ; Or just need to be idle. ;; So we call the handler. (progn (funcall (car handler)) --- 184,197 ---- (unless (zerop time) (setcar (nthcdr 1 handler) (decf time))) (and (zerop time) ; If the timer now is zero... ! ;; Test for appropriate idleness ! (progn ! (setq idle (nth 2 handler)) ! (cond ! ((null idle) t) ; Don't care about idle. ! ((numberp idle) ; Numerical idle... ! (< idle gnus-demon-idle-time)) ; Idle timed out. ! (t (< 0 gnus-demon-idle-time)))) ; Or just need to be idle. ;; So we call the handler. (progn (funcall (car handler)) *** pub/rgnus/lisp/gnus-dup.el Sat Nov 23 20:28:14 1996 --- rgnus/lisp/gnus-dup.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-dup.el --- suppression of duplicate articles in Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-dup.el --- suppression of duplicate articles in Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-eform.el Fri Nov 22 05:14:21 1996 --- rgnus/lisp/gnus-eform.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-eform.el --- a mode for editing forms for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-eform.el --- a mode for editing forms for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-ems.el Wed Nov 6 03:44:17 1996 --- rgnus/lisp/gnus-ems.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-gl.el Sun Nov 17 23:41:40 1996 --- rgnus/lisp/gnus-gl.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-gl.el --- an interface to GroupLens for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Brad Miller ;; Keywords: news, score --- 1,5 ---- ;;; gnus-gl.el --- an interface to GroupLens for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Brad Miller ;; Keywords: news, score *** pub/rgnus/lisp/gnus-group.el Mon Jan 6 11:35:26 1997 --- rgnus/lisp/gnus-group.el Thu Jan 9 11:59:42 1997 *************** *** 1,5 **** ;;; gnus-group.el --- group mode commands for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-group.el --- group mode commands for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 1861,1866 **** --- 1861,1867 ---- (error "No group on current line")) (unless (setq info (gnus-get-info group)) (error "Killed group; can't be edited")) + (gnus-close-group group) (gnus-edit-form ;; Find the proper form to edit. (cond ((eq part 'method) *************** *** 2095,2100 **** --- 2096,2102 ---- "nnvirtual:"))) (unless (eq (car (gnus-find-method-for-group vgroup)) 'nnvirtual) (error "%s is not an nnvirtual group" vgroup)) + (gnus-close-group vgroup) (let* ((groups (gnus-group-process-prefix n)) (method (gnus-info-method (gnus-get-info vgroup)))) (setcar (cdr method) *** pub/rgnus/lisp/gnus-int.el Fri Nov 8 02:06:58 1996 --- rgnus/lisp/gnus-int.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-int.el --- backend interface functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-int.el --- backend interface functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-kill.el Thu Dec 5 17:56:51 1996 --- rgnus/lisp/gnus-kill.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-kill.el --- kill commands for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-kill.el --- kill commands for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-logic.el Tue Oct 8 12:47:00 1996 --- rgnus/lisp/gnus-logic.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-logic.el --- advanced scoring code for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-logic.el --- advanced scoring code for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-mh.el Tue Oct 8 12:47:00 1996 --- rgnus/lisp/gnus-mh.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-mh.el --- mh-e interface for Gnus ! ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-mh.el --- mh-e interface for Gnus ! ;; Copyright (C) 1994,95,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-move.el Fri Dec 13 05:30:19 1996 --- rgnus/lisp/gnus-move.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-move.el --- commands for moving Gnus from one server to another ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-move.el --- commands for moving Gnus from one server to another ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-msg.el Sat Jan 4 08:56:25 1997 --- rgnus/lisp/gnus-msg.el Thu Jan 9 11:59:40 1997 *************** *** 1,5 **** ;;; gnus-msg.el --- mail and post interface for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-msg.el --- mail and post interface for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-nocem.el Thu Jan 2 16:02:50 1997 --- rgnus/lisp/gnus-nocem.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-nocem.el --- NoCeM pseudo-cancellation treatment ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-nocem.el --- NoCeM pseudo-cancellation treatment ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-picon.el Fri Dec 6 13:38:35 1996 --- rgnus/lisp/gnus-picon.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-picon.el --- displaying pretty icons in Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Wes Hardaker ;; Keywords: news xpm annotation glyph faces --- 1,5 ---- ;;; gnus-picon.el --- displaying pretty icons in Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Wes Hardaker ;; Keywords: news xpm annotation glyph faces *** pub/rgnus/lisp/gnus-range.el Mon Sep 30 23:42:23 1996 --- rgnus/lisp/gnus-range.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-range.el --- range and sequence functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-range.el --- range and sequence functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-salt.el Fri Jan 3 18:12:59 1997 --- rgnus/lisp/gnus-salt.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-salt.el --- alternate summary mode interfaces for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-salt.el --- alternate summary mode interfaces for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-score.el Fri Dec 13 04:04:44 1996 --- rgnus/lisp/gnus-score.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-score.el --- scoring code for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-score.el --- scoring code for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-soup.el Thu Dec 5 20:42:52 1996 --- rgnus/lisp/gnus-soup.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-soup.el --- SOUP packet writing support for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-soup.el --- SOUP packet writing support for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-spec.el Sun Nov 10 10:42:09 1996 --- rgnus/lisp/gnus-spec.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-spec.el --- format spec functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-spec.el --- format spec functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-srvr.el Sun Jan 5 13:58:24 1997 --- rgnus/lisp/gnus-srvr.el Thu Jan 9 11:59:39 1997 *************** *** 1,5 **** ;;; gnus-srvr.el --- virtual server support for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-srvr.el --- virtual server support for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-start.el Mon Jan 6 11:39:31 1997 --- rgnus/lisp/gnus-start.el Thu Jan 9 11:59:38 1997 *************** *** 1,5 **** ;;; gnus-start.el --- startup functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-start.el --- startup functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-sum.el Mon Jan 6 11:35:25 1997 --- rgnus/lisp/gnus-sum.el Thu Jan 9 11:59:37 1997 *************** *** 1,5 **** ;;; gnus-sum.el --- summary mode commands for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-sum.el --- summary mode commands for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 4477,4482 **** --- 4477,4483 ---- (cond (n ;; A numerical prefix has been given. + (setq n (prefix-numeric-value n)) (let ((backward (< n 0)) (n (abs (prefix-numeric-value n))) articles article) *** pub/rgnus/lisp/gnus-topic.el Sun Jan 5 10:32:43 1997 --- rgnus/lisp/gnus-topic.el Thu Jan 9 11:59:37 1997 *************** *** 1,5 **** ;;; gnus-topic.el --- a folding minor mode for Gnus group buffers ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Ilja Weis ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus-topic.el --- a folding minor mode for Gnus group buffers ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Ilja Weis ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/gnus-undo.el Fri Jan 3 17:29:56 1997 --- rgnus/lisp/gnus-undo.el Thu Jan 9 11:59:37 1997 *************** *** 1,5 **** ;;; gnus-undo.el --- minor mode for undoing in Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-undo.el --- minor mode for undoing in Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-util.el Fri Jan 3 12:13:01 1997 --- rgnus/lisp/gnus-util.el Thu Jan 9 11:59:37 1997 *************** *** 1,5 **** ;;; gnus-util.el --- utility functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-util.el --- utility functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-uu.el Thu Nov 14 18:34:06 1996 --- rgnus/lisp/gnus-uu.el Thu Jan 9 11:59:37 1997 *************** *** 1,5 **** ;;; gnus-uu.el --- extract (uu)encoded files in Gnus ! ;; Copyright (C) 1985,86,87,93,94,95,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Created: 2 Oct 1993 --- 1,5 ---- ;;; gnus-uu.el --- extract (uu)encoded files in Gnus ! ;; Copyright (C) 1985,86,87,93,94,95,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Created: 2 Oct 1993 *** pub/rgnus/lisp/gnus-vm.el Tue Oct 8 12:46:33 1996 --- rgnus/lisp/gnus-vm.el Thu Jan 9 11:59:36 1997 *************** *** 1,5 **** ;;; gnus-vm.el --- vm interface for Gnus ! ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc. ;; Author: Per Persson ;; Keywords: news, mail --- 1,5 ---- ;;; gnus-vm.el --- vm interface for Gnus ! ;; Copyright (C) 1994,95,96,97 Free Software Foundation, Inc. ;; Author: Per Persson ;; Keywords: news, mail *** pub/rgnus/lisp/gnus-win.el Fri Jan 3 18:20:40 1997 --- rgnus/lisp/gnus-win.el Thu Jan 9 11:59:36 1997 *************** *** 1,5 **** ;;; gnus-win.el --- window configuration functions for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-win.el --- window configuration functions for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/gnus-xmas.el Mon Jan 6 11:35:26 1997 --- rgnus/lisp/gnus-xmas.el Thu Jan 9 11:59:35 1997 *************** *** 1,5 **** ;;; gnus-xmas.el --- Gnus functions for XEmacs ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; gnus-xmas.el --- Gnus functions for XEmacs ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 477,484 **** 'gnus-xmas-topic-remove-excess-properties) (fset 'gnus-mode-line-buffer-identification 'identity) (unless (boundp 'shell-command-switch) ! (setq shell-command-switch "-c")) ! )) ;;; XEmacs logo and toolbar. --- 477,483 ---- 'gnus-xmas-topic-remove-excess-properties) (fset 'gnus-mode-line-buffer-identification 'identity) (unless (boundp 'shell-command-switch) ! (setq shell-command-switch "-c")))) ;;; XEmacs logo and toolbar. *** pub/rgnus/lisp/gnus.el Sun Jan 5 12:12:52 1997 --- rgnus/lisp/gnus.el Thu Jan 9 11:59:35 1997 *************** *** 1,5 **** ;;; gnus.el --- a newsreader for GNU Emacs ! ;; Copyright (C) 1987,88,89,90,93,94,95,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; gnus.el --- a newsreader for GNU Emacs ! ;; Copyright (C) 1987,88,89,90,93,94,95,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *************** *** 43,49 **** "Score and kill file handling." :group 'gnus ) ! (defconst gnus-version-number "0.79" "Version number for this version of Gnus.") (defconst gnus-version (format "Red Gnus v%s" gnus-version-number) --- 43,49 ---- "Score and kill file handling." :group 'gnus ) ! (defconst gnus-version-number "0.80" "Version number for this version of Gnus.") (defconst gnus-version (format "Red Gnus v%s" gnus-version-number) *************** *** 122,129 **** (ignore-errors (set-face-underline-p name t)))) name)) - - ;;; Internal variables ;; We define these group faces here to avoid the display ;; update forced when creating new faces. --- 122,127 ---- *** pub/rgnus/lisp/message.el Mon Jan 6 11:35:25 1997 --- rgnus/lisp/message.el Thu Jan 9 11:59:35 1997 *************** *** 1,5 **** ;;; message.el --- composing mail and news messages ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news --- 1,5 ---- ;;; message.el --- composing mail and news messages ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news *************** *** 219,224 **** --- 219,227 ---- :type 'regexp :group 'message-various) + (defcustom message-elide-elipsis "\n[...]\n\n" + "*The string which is inserted for elided text.") + (defcustom message-interactive nil "Non-nil means when sending a message wait for and display errors. nil means let mailer mail back a message to report errors." *************** *** 360,365 **** --- 363,375 ---- (const use) (const ask))) + ;; stuff relating to broken sendmail in MMDF + (defcustom message-sendmail-f-is-evil nil + "*Non-nil means that \"-f username\" should not be added to the sendmail + command line, because it is even more evil than leaving it out." + :group 'message-sending + :type 'boolean) + ;; qmail-related stuff (defcustom message-qmail-inject-program "/var/qmail/bin/qmail-inject" "Location of the qmail-inject program." *************** *** 1234,1247 **** (or (bolp) (insert "\n"))))) (defun message-elide-region (b e) ! "Elide the text between point and mark. ! An ellipsis (\"[...]\") will be inserted where the text was ! killed." (interactive "r") (kill-region b e) (unless (bolp) (insert "\n")) ! (insert "\n[...]\n\n")) (defvar message-caesar-translation-table nil) --- 1244,1256 ---- (or (bolp) (insert "\n"))))) (defun message-elide-region (b e) ! "Elide the text between point and mark. An ellipsis (from ! message-elide-elipsis) will be inserted where the text was killed." (interactive "r") (kill-region b e) (unless (bolp) (insert "\n")) ! (insert message-elide-elipsis)) (defvar message-caesar-translation-table nil) *************** *** 1661,1667 **** nil errbuf nil "-oi") ;; Always specify who from, ;; since some systems have broken sendmails. ! (list "-f" (user-login-name)) ;; These mean "report errors by mail" ;; and "deliver in background". (if (null message-interactive) '("-oem" "-odb")) --- 1670,1679 ---- nil errbuf nil "-oi") ;; Always specify who from, ;; since some systems have broken sendmails. ! ;; But some systems are more broken with -f, so ! ;; we'll let users override this. ! (if (null message-sendmail-f-is-evil) ! (list "-f" (user-login-name))) ;; These mean "report errors by mail" ;; and "deliver in background". (if (null message-interactive) '("-oem" "-odb")) *** pub/rgnus/lisp/messagexmas.el Mon Nov 18 02:16:50 1996 --- rgnus/lisp/messagexmas.el Thu Jan 9 11:59:35 1997 *************** *** 1,5 **** ;;; messagexmas.el --- XEmacs extensions to message ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news --- 1,5 ---- ;;; messagexmas.el --- XEmacs extensions to message ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news *** pub/rgnus/lisp/messcompat.el Tue Oct 29 17:20:06 1996 --- rgnus/lisp/messcompat.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; messcompat.el --- making message mode compatible with mail mode ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news --- 1,5 ---- ;;; messcompat.el --- making message mode compatible with mail mode ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news *** pub/rgnus/lisp/nnbabyl.el Mon Dec 16 18:52:47 1996 --- rgnus/lisp/nnbabyl.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nnbabyl.el --- rmail mbox access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nnbabyl.el --- rmail mbox access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nndb.el Tue Oct 8 12:47:30 1996 --- rgnus/lisp/nndb.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nndb.el --- nndb access for Gnus ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Kai Grossjohann ;; Keywords: news --- 1,5 ---- ;;; nndb.el --- nndb access for Gnus ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Kai Grossjohann ;; Keywords: news *** pub/rgnus/lisp/nndir.el Wed Jul 24 07:46:54 1996 --- rgnus/lisp/nndir.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nndir.el --- single directory newsgroup access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nndir.el --- single directory newsgroup access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/nndoc.el Mon Dec 16 14:56:22 1996 --- rgnus/lisp/nndoc.el Thu Jan 9 11:59:31 1997 *************** *** 1,4 **** ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ! ;;; nndoc.el --- single file access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nndraft.el Mon Sep 30 23:42:40 1996 --- rgnus/lisp/nndraft.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nndraft.el --- draft article access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nndraft.el --- draft article access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/nneething.el Fri Nov 8 05:53:20 1996 --- rgnus/lisp/nneething.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nneething.el --- random file access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nneething.el --- random file access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nnfolder.el Mon Jan 6 11:48:01 1997 --- rgnus/lisp/nnfolder.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nnfolder.el --- mail folder access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Scott Byer ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; nnfolder.el --- mail folder access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Scott Byer ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/nngateway.el Sun Aug 18 14:35:18 1996 --- rgnus/lisp/nngateway.el Thu Jan 9 11:59:34 1997 *************** *** 1,5 **** ;;; nngateway.el --- posting news via mail gateways ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail --- 1,5 ---- ;;; nngateway.el --- posting news via mail gateways ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail *** pub/rgnus/lisp/nnheader.el Tue Dec 3 14:48:34 1996 --- rgnus/lisp/nnheader.el Thu Jan 9 11:59:33 1997 *************** *** 1,5 **** ;;; nnheader.el --- header access macros for Gnus and its backends ! ;; Copyright (C) 1987,88,89,90,93,94,95,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; nnheader.el --- header access macros for Gnus and its backends ! ;; Copyright (C) 1987,88,89,90,93,94,95,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/nnheaderxm.el Wed Nov 20 15:30:53 1996 --- rgnus/lisp/nnheaderxm.el Thu Jan 9 11:59:33 1997 *************** *** 1,5 **** ;;; nnheaderxm.el --- making Gnus backends work under XEmacs ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nnheaderxm.el --- making Gnus backends work under XEmacs ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/nnkiboze.el Sun Jan 5 10:21:25 1997 --- rgnus/lisp/nnkiboze.el Thu Jan 9 11:59:33 1997 *************** *** 1,5 **** ;;; nnkiboze.el --- select virtual news access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nnkiboze.el --- select virtual news access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/nnmail.el Mon Jan 6 23:38:17 1997 --- rgnus/lisp/nnmail.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnmail.el --- mail support functions for the Gnus mail backends ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail --- 1,5 ---- ;;; nnmail.el --- mail support functions for the Gnus mail backends ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail *************** *** 508,514 **** (progn (setq nnmail-internal-password nnmail-pop-password) (when (and nnmail-pop-password-required ! (not nnmail-pop-password)) (setq nnmail-internal-password (nnmail-read-passwd (format "Password for %s: " --- 508,514 ---- (progn (setq nnmail-internal-password nnmail-pop-password) (when (and nnmail-pop-password-required ! (not nnmail-internal-password)) (setq nnmail-internal-password (nnmail-read-passwd (format "Password for %s: " *** pub/rgnus/lisp/nnmbox.el Tue Oct 29 17:20:08 1996 --- rgnus/lisp/nnmbox.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnmbox.el --- mail mbox access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nnmbox.el --- mail mbox access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nnmh.el Fri Nov 8 05:53:19 1996 --- rgnus/lisp/nnmh.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnmh.el --- mhspool access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nnmh.el --- mhspool access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nnml.el Sun Jan 5 19:21:19 1997 --- rgnus/lisp/nnml.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnml.el --- mail spool access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nnml.el --- mail spool access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nnoo.el Sun Jan 5 10:21:25 1997 --- rgnus/lisp/nnoo.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnoo.el --- OO Gnus Backends ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nnoo.el --- OO Gnus Backends ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *************** *** 61,67 **** (push (list ',backend (mapcar (lambda (p) (list p)) ',parents) nil nil) ! nnoo-definition-alist))) (put 'nnoo-declare 'lisp-indent-function 1) (defun nnoo-parents (backend) --- 61,69 ---- (push (list ',backend (mapcar (lambda (p) (list p)) ',parents) nil nil) ! nnoo-definition-alist) ! (push (list ',backend "*internal-non-initialized-backend*") ! nnoo-state-alist))) (put 'nnoo-declare 'lisp-indent-function 1) (defun nnoo-parents (backend) *************** *** 193,199 **** ;; If this is the first time we push the server (i. e., this is ;; the nil server), then we update the default values of ;; all the variables to reflect the current values. ! (unless current (let ((defaults (nnoo-variables backend)) def) (while (setq def (pop defaults)) --- 195,201 ---- ;; If this is the first time we push the server (i. e., this is ;; the nil server), then we update the default values of ;; all the variables to reflect the current values. ! (when (equal current "*internal-non-initialized-backend*") (let ((defaults (nnoo-variables backend)) def) (while (setq def (pop defaults)) *** pub/rgnus/lisp/nnsoup.el Wed Nov 20 15:30:53 1996 --- rgnus/lisp/nnsoup.el Thu Jan 9 11:59:32 1997 *************** *** 1,5 **** ;;; nnsoup.el --- SOUP access for Gnus ! ;; Copyright (C) 1995,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA --- 1,5 ---- ;;; nnsoup.el --- SOUP access for Gnus ! ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA *** pub/rgnus/lisp/nnspool.el Thu Dec 5 08:50:26 1996 --- rgnus/lisp/nnspool.el Thu Jan 9 11:59:31 1997 *************** *** 1,5 **** ;;; nnspool.el --- spool access for GNU Emacs ! ;; Copyright (C) 1988,89,90,93,94,95,96 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; nnspool.el --- spool access for GNU Emacs ! ;; Copyright (C) 1988,89,90,93,94,95,96,97 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen *** pub/rgnus/lisp/nntp.el Mon Dec 16 19:09:26 1996 --- rgnus/lisp/nntp.el Thu Jan 9 11:59:31 1997 *************** *** 1,4 **** ! ;;; Copyright (C) 1987,88,89,90,92,93,94,95,96 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ! ;;; nntp.el --- nntp access for Gnus ! ;;; Copyright (C) 1987,88,89,90,92,93,94,95,96,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/nnvirtual.el Tue Dec 10 13:51:28 1996 --- rgnus/lisp/nnvirtual.el Thu Jan 9 11:59:31 1997 *************** *** 1,5 **** ;;; nnvirtual.el --- virtual newsgroups access for Gnus ! ;; Copyright (C) 1994,95,96 Free Software Foundation, Inc. ;; Author: David Moore ;; Lars Magne Ingebrigtsen --- 1,5 ---- ;;; nnvirtual.el --- virtual newsgroups access for Gnus ! ;; Copyright (C) 1994,95,96,97 Free Software Foundation, Inc. ;; Author: David Moore ;; Lars Magne Ingebrigtsen *************** *** 77,82 **** --- 77,85 ---- (defvoo nnvirtual-mapping-marks nil "Compressed marks alist for the virtual group as computed from the marks of individual component groups.") + (defvoo nnvirtual-info-installed nil + "T if we have already installed the group info for this group, and shouldn't blast over it again.") + (defvoo nnvirtual-status-string "") (eval-and-compile *************** *** 214,220 **** nnvirtual-mapping-offsets nil nnvirtual-mapping-len 0 nnvirtual-mapping-reads nil ! nnvirtual-mapping-marks nil) (when nnvirtual-component-regexp ;; Go through the newsrc alist and find all component groups. (let ((newsrc (cdr gnus-newsrc-alist)) --- 217,224 ---- nnvirtual-mapping-offsets nil nnvirtual-mapping-len 0 nnvirtual-mapping-reads nil ! nnvirtual-mapping-marks nil ! nnvirtual-info-installed nil) (when nnvirtual-component-regexp ;; Go through the newsrc alist and find all component groups. (let ((newsrc (cdr gnus-newsrc-alist)) *************** *** 285,291 **** (deffoo nnvirtual-request-update-info (group info &optional server) ! (when (nnvirtual-possibly-change-server server) ;; Install the precomputed lists atomically, so the virtual group ;; is not left in a half-way state in case of C-g. (gnus-atomic-progn --- 289,296 ---- (deffoo nnvirtual-request-update-info (group info &optional server) ! (when (and (nnvirtual-possibly-change-server server) ! (not nnvirtual-info-installed)) ;; Install the precomputed lists atomically, so the virtual group ;; is not left in a half-way state in case of C-g. (gnus-atomic-progn *************** *** 293,299 **** (if (nthcdr 3 info) (setcar (nthcdr 3 info) nnvirtual-mapping-marks) (when nnvirtual-mapping-marks ! (setcdr (nthcdr 2 info) (list nnvirtual-mapping-marks))))) t)) --- 298,305 ---- (if (nthcdr 3 info) (setcar (nthcdr 3 info) nnvirtual-mapping-marks) (when nnvirtual-mapping-marks ! (setcdr (nthcdr 2 info) (list nnvirtual-mapping-marks)))) ! (setq nnvirtual-info-installed t)) t)) *************** *** 734,739 **** --- 740,748 ---- ;; Store the reads list for later use. (setq nnvirtual-mapping-reads (nreverse reads)) + + ;; Throw flag to show we changed the info. + (setq nnvirtual-info-installed nil) )) (provide 'nnvirtual) *** pub/rgnus/lisp/nnweb.el Thu Dec 5 08:50:26 1996 --- rgnus/lisp/nnweb.el Thu Jan 9 11:59:31 1997 *************** *** 1,5 **** ;;; nnweb.el --- retrieving articles via web search engines ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news --- 1,5 ---- ;;; nnweb.el --- retrieving articles via web search engines ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news *** pub/rgnus/lisp/smiley.el Tue Nov 26 12:37:13 1996 --- rgnus/lisp/smiley.el Thu Jan 9 11:59:31 1997 *************** *** 1,5 **** ;;; smiley.el --- displaying smiley faces ! ;; Copyright (C) 1996 Free Software Foundation, Inc. ;; Author: Wes Hardaker ;; Keywords: fun --- 1,5 ---- ;;; smiley.el --- displaying smiley faces ! ;; Copyright (C) 1996,97 Free Software Foundation, Inc. ;; Author: Wes Hardaker ;; Keywords: fun *** pub/rgnus/lisp/ChangeLog Mon Jan 6 23:38:17 1997 --- rgnus/lisp/ChangeLog Thu Jan 9 12:08:41 1997 *************** *** 1,3 **** --- 1,57 ---- + Thu Jan 9 12:00:21 1997 Wesley Hardaker + + * acronym.el: New package. + + Thu Jan 9 11:43:28 1997 Lars Magne Ingebrigtsen + + * gnus.el: Updated copyrights. + + * nnoo.el (nnoo-push-server): Only push the first server. + + Wed Jan 8 11:34:07 1997 David Moore + + * nnoo.el (nnoo-push-server): Revert to 0.77 behaviour. + + * nnvirtual.el (nnvirtual-info-installed): New variable. + (nnvirtual-open-server): Use it. + (nnvirtual-request-update-info): ditto. + (nnvirtual-create-mapping): ditto. + + * gnus-group.el (gnus-group-edit-group): Close the group before + editing it. + (gnus-group-add-to-virtual): ditto. + + Thu Jan 9 11:32:13 1997 Lars Magne Ingebrigtsen + + * gnus-art.el: Redefine ems. + + Wed Jan 8 20:34:09 1997 John + + * message.el (message-sendmail-f-is-evil): New variable. + (message-elide-elipsis): Ditto. + + Wed Jan 8 17:19:02 1997 Paul Stodghill + + * gnus-demon.el (gnus-demon): Don't run when not idle. + + Wed Jan 8 12:58:23 1997 Lars Magne Ingebrigtsen + + * gnus-sum.el (gnus-summary-work-articles): Accept non-numerical + prefix values. + + Wed Jan 8 12:52:53 1997 Jason Rumney + + * nnmail.el (nnmail-move-inbox): Use `nnmail-internal-password'. + + Tue Jan 7 15:41:35 1997 Lars Magne Ingebrigtsen + + * gnus-art.el (gnus-article-show-hidden-text): Would bug out on + signatures. + + Mon Jan 6 23:46:53 1997 Lars Magne Ingebrigtsen + + * gnus.el: Red Gnus v0.79 is released. + Mon Jan 6 11:23:05 1997 Lars Magne Ingebrigtsen * nnmail.el (nnmail-process-babyl-mail-format): Widen at the right *** pub/rgnus/texi/gnus-faq.texi Mon Sep 9 19:37:59 1996 --- rgnus/texi/gnus-faq.texi Tue Jan 7 20:13:51 1997 *************** *** 8,14 **** This is the Gnus Frequently Asked Questions list. If you have a Web browser, the official hypertext version is at ! @file{http://www.miranova.com/~steve/gnus-faq.html>}, and has probably been updated since you got this manual. @menu --- 8,14 ---- This is the Gnus Frequently Asked Questions list. If you have a Web browser, the official hypertext version is at ! @file{http://www.ccs.neu.edu/software/gnus/}, and has probably been updated since you got this manual. @menu *** pub/rgnus/texi/gnus.texi Mon Jan 6 23:39:12 1997 --- rgnus/texi/gnus.texi Thu Jan 9 18:06:19 1997 *************** *** 1,7 **** \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Red Gnus 0.79 Manual @synindex fn cp @synindex vr cp @synindex pg cp --- 1,7 ---- \input texinfo @c -*-texinfo-*- @setfilename gnus ! @settitle Red Gnus 0.80 Manual @synindex fn cp @synindex vr cp @synindex pg cp *************** *** 287,293 **** @tex @titlepage ! @title Red Gnus 0.79 Manual @author by Lars Magne Ingebrigtsen @page --- 287,293 ---- @tex @titlepage ! @title Red Gnus 0.80 Manual @author by Lars Magne Ingebrigtsen @page *************** *** 323,329 **** spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Red Gnus 0.79 @end ifinfo --- 323,329 ---- spool or your mbox file. All at the same time, if you want to push your luck. ! This manual corresponds to Red Gnus 0.80 @end ifinfo *************** *** 3117,3123 **** @item D @code{Date}. @item d ! The @code{Date} in @code{YY-MMM} format. @item o The @code{Date} in @code{YYYYMMDDTHHMMSS} format. @item M --- 3117,3123 ---- @item D @code{Date}. @item d ! The @code{Date} in @code{DD-MMM} format. @item o The @code{Date} in @code{YYYYMMDDTHHMMSS} format. @item M *** pub/rgnus/texi/ChangeLog Mon Jan 6 23:38:15 1997 --- rgnus/texi/ChangeLog Tue Jan 7 10:17:05 1997 *************** *** 1,3 **** --- 1,7 ---- + Tue Jan 7 09:36:36 1997 Lars Magne Ingebrigtsen + + * gnus.texi (Summary Buffer Lines): Correction. + Mon Jan 6 22:49:12 1997 Lars Magne Ingebrigtsen * gnus.texi (NoCeM): Addition.