Gnus development mailing list
 help / color / mirror / Atom feed
From: David Moore <dmoore@UCSD.EDU>
Subject: Re: gnus-setup not being required?
Date: 19 Nov 1996 10:26:35 -0800	[thread overview]
Message-ID: <rvralq7xgk.fsf@sdnp5.ucsd.edu> (raw)
In-Reply-To: Sean Lynch's message of 19 Nov 1996 09:43:49 -0800

Sean Lynch <seanl@Internex.NET> writes:

> It doesn't look like gnus-setup is being required anywhere.  Am I
> supposed to require this myself in .gnus.el?
> 
> I noticed this because when I stopped manually setting
> message-cite-function, it was being set to message-cite-original, even
> though from gnus-setup.el, which I assumed was being loaded, it
> definitely should have been set to sc-cite-original.
> 
> I'm sure I'm just missing something here.  Someone hand me a clue.

	I think you want to load gnus-setup in your .emacs file long
before you start/load gnus.

	On the other hand, I don't know the real answer either, but I
put the following in my .emacs init file.  The clearing is useful to
make sure you don't call anything which might hit old autoloads (in
particular into gnus-scomo.el caused by gnus-bbdb) which can cause old
broken 5.2 code to override new working rgnus code.  Anyways, the
clearing code is optional. :) But if you use it, do it before you load
the current gnus.


;;; Ok, lets clear out all of the normal xemacs gnus autoloads, and then
;;; load gnus-setup.el.  So that rgnus has a clean start environment.
(mapc (lambda (x) (fmakunbound (intern x)))
      (all-completions "" obarray
		       (lambda (sym)
			 (and (fboundp sym)
			      (eq (car-safe (symbol-function sym)) 'autoload)
			      (let ((file (cadr (symbol-function sym))))
				(string-match
				 (mapconcat 'identity
					    '("^gnus-"
					      "^gnus$"
					      "^message$"
					      "^nnfolder$"
					      "^nnkiboze$"
					      "^nnml$"
					      "^nnsoup$"
					      "^smiley$"
					      )
					    "\\|")
				 file))))))

(setq gnus-use-tm nil)
(setq gnus-use-sc nil)
(setq gnus-use-mailcrypt nil)
(require 'gnus-setup)

-- 
David Moore <dmoore@ucsd.edu>       | Computer Systems Lab      __o
UCSD Dept. Computer Science - 0114  | Work: (619) 534-8604    _ \<,_
La Jolla, CA 92093-0114             | Fax:  (619) 534-1445   (_)/ (_)
<URL:http://oj.egbt.org/dmoore/>    | Solo Furnace Creek 508 -- 1996!


  reply	other threads:[~1996-11-19 18:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-11-19 17:43 Sean Lynch
1996-11-19 18:26 ` David Moore [this message]
1996-11-19 19:26   ` Steven L Baur
1996-11-19 18:54 ` Steven L Baur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=rvralq7xgk.fsf@sdnp5.ucsd.edu \
    --to=dmoore@ucsd.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).