From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44684 Path: main.gmane.org!not-for-mail From: Amos Gouaux Newsgroups: gmane.emacs.gnus.general Subject: Re: Autoloads no longer working? Date: Sun, 05 May 2002 10:22:31 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1020612267 14534 127.0.0.1 (5 May 2002 15:24:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 5 May 2002 15:24:27 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 174NsB-0003mJ-00 for ; Sun, 05 May 2002 17:24:27 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 174Nqc-0007fw-00; Sun, 05 May 2002 10:22:50 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 05 May 2002 10:23:04 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id KAA29230 for ; Sun, 5 May 2002 10:22:53 -0500 (CDT) Original-Received: (qmail 2936 invoked by alias); 5 May 2002 15:22:34 -0000 Original-Received: (qmail 2931 invoked from network); 5 May 2002 15:22:34 -0000 Original-Received: from ns0.utdallas.edu (129.110.10.1) by gnus.org with SMTP; 5 May 2002 15:22:34 -0000 Original-Received: from localhost (crtntx1-ar4-4-60-082-004.crtntx1.dsl-verizon.net [4.60.82.4]) by ns0.utdallas.edu (Postfix) with ESMTP id D8A8C1A11ED for ; Sun, 5 May 2002 10:22:32 -0500 (CDT) Original-To: ding@gnus.org In-Reply-To: (amos+lists.ding@utdallas.edu's message of "Tue, 30 Apr 2002 10:58:11 -0500 (CDT)") Original-Lines: 41 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2.50 (powerpc-apple-darwin5.4) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44684 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44684 >>>>> On Tue, 30 Apr 2002 10:58:11 -0500 (CDT), >>>>> lists ding (ld) writes: ld> On Tue, 23 Apr 2002, Andreas Fuchs wrote: >> Actually, I noticed that these happen before the ~/.gnus gets loaded: I >> only get these messages: >> >> ,---- >> | Loading gnus... >> | eval: Symbol's function definition is void: mm-guess-mime-charset >> `---- Surely I'm not the only one to run CVS Gnus with CVS Emacs, right? Do y'all replace the gnus that's bundled with Emacs? Then again, I don't recall encountering this difficulty before. Anyway, this seems to allow me to fiddle with beta yet leave the bundled alone. Maybe there's a better way to do this? I'm concerned that I may not be unloading everything I need to, or maybe unloading too much. Perhaps gnus-load.el should have an option to do an unload of each feature it encounters while gnus-load.el is being built? (add-to-list 'load-path (expand-file-name "~/elisp/apps/gnus/lisp/")) (add-to-list 'Info-default-directory-list (expand-file-name "~/elisp/apps/gnus/texi/")) (dolist (feature features) (if (string-match "^\\(gnus-\\|nn\\|mm-\\|mml-\\|rfc\\|message\\)" (symbol-name feature)) (unload-feature feature 'force))) (require 'gnus-load) Hmm... this still isn't quite right. When I tried to post I got: Sending... message-send-mail: Symbol's function definition is void: mml-buffer-substring-no-properties-except-hard-newlines Maybe this will work after load-library of mml....