aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-05-17 02:42:16 +0000
committerRoland McGrath1993-05-17 02:42:16 +0000
commit655793e50b04b8db1b473a727426e494d2355ee7 (patch)
treecdc6607e0b5457f23b95192745beb2a93a608497
parent8cdc660f671bea4dfac5303503d2adbb4ed69a69 (diff)
downloademacs-655793e50b04b8db1b473a727426e494d2355ee7.tar.gz
emacs-655793e50b04b8db1b473a727426e494d2355ee7.zip
(gnus-info-directory): Variable removed.
(gnus-info-find-node): Don't use it.
-rw-r--r--lisp/gnus.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 70ee3dd2ec3..572fcbe8d92 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -1,6 +1,6 @@
1;;; GNUS: an NNTP-based News Reader for GNU Emacs 1;;; GNUS: an NNTP-based News Reader for GNU Emacs
2;; Copyright (C) 1987, 1988, 1989, 1990, 1993 Free Software Foundation, Inc. 2;; Copyright (C) 1987, 1988, 1989, 1990, 1993 Free Software Foundation, Inc.
3;; $Header: gnus.el,v 3.15 93/05/10 19:49:20 umerin Locked $ 3;; $Header: /gd/gnu/emacs/19.0/lisp/RCS/gnus.el,v 1.14 1993/05/16 22:40:14 rms Exp roland $
4 4
5;; This file is part of GNU Emacs. 5;; This file is part of GNU Emacs.
6 6
@@ -597,10 +597,6 @@ field; if stringp, use this; if non-nil, strip of the local host name.")
597(defvar gnus-use-generic-path nil 597(defvar gnus-use-generic-path nil
598 "*If nil, use the NNTP server name in the Path: field; if stringp, 598 "*If nil, use the NNTP server name in the Path: field; if stringp,
599use this; if non-nil, use no host name (user name only)") 599use this; if non-nil, use no host name (user name only)")
600
601(defvar gnus-info-directory Info-directory
602 "*A directory placing an Info file of GNUS.")
603
604 600
605;; Internal variables. 601;; Internal variables.
606 602
@@ -5813,8 +5809,7 @@ configuration list is got from the variable gnus-window-configuration."
5813 ((eq major-mode 'gnus-summary-mode) 5809 ((eq major-mode 'gnus-summary-mode)
5814 (gnus-configure-windows '(0 1 0)) ;Take all windows. 5810 (gnus-configure-windows '(0 1 0)) ;Take all windows.
5815 (pop-to-buffer gnus-summary-buffer))) 5811 (pop-to-buffer gnus-summary-buffer)))
5816 (let ((Info-directory (expand-file-name gnus-info-directory nil))) 5812 (Info-goto-node (car (cdr (assq major-mode gnus-info-nodes)))))
5817 (Info-goto-node (car (cdr (assq major-mode gnus-info-nodes))))))
5818 5813
5819(defun gnus-overload-functions (&optional overloads) 5814(defun gnus-overload-functions (&optional overloads)
5820 "Overload functions specified by optional argument OVERLOADS. 5815 "Overload functions specified by optional argument OVERLOADS.