From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/51622 Path: main.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: nnimap slowness Date: Sat, 19 Apr 2003 08:28:41 +0200 Organization: Probably a good idea Sender: ding-owner@lists.math.uh.edu Message-ID: <877k9rgfvq.fsf@doohan.bang.priv.no> References: <867kagnxsp.fsf@halny.zapto.org> <86k7dyy0i8.fsf@halny.zapto.org> <87smsftyt9.fsf@jeeves.blindglobe.net> <84lly7hauz.fsf@boost-consulting.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1050734811 13922 80.91.224.249 (19 Apr 2003 06:46:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 19 Apr 2003 06:46:51 +0000 (UTC) Original-X-From: ding-owner+M166@lists.math.uh.edu Sat Apr 19 08:46:49 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 196m7d-0003cP-00 for ; Sat, 19 Apr 2003 08:46:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 196m7y-00071w-00; Sat, 19 Apr 2003 01:47:10 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 196m7t-00071r-00 for ding@lists.math.uh.edu; Sat, 19 Apr 2003 01:47:05 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by util2.math.uh.edu with smtp (Exim 4.10) id 196lq7-0003hK-00 for ding@lists.math.uh.edu; Sat, 19 Apr 2003 01:28:43 -0500 Original-Received: (qmail 58584 invoked by alias); 19 Apr 2003 06:28:43 -0000 Original-Received: (qmail 58579 invoked from network); 19 Apr 2003 06:28:42 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by sclp3.sclp.com with SMTP; 19 Apr 2003 06:28:42 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 196lsy-00076E-00 for ; Sat, 19 Apr 2003 08:31:40 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 33 Original-NNTP-Posting-Host: 80.111.29.5 Original-X-Trace: quimby.gnus.org 1050733900 26550 80.111.29.5 (19 Apr 2003 06:31:40 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 19 Apr 2003 06:31:40 GMT Mail-Copies-To: never User-Agent: Gnus/5.090018 (Oort Gnus v0.18) XEmacs/21.4 (Common Lisp, linux) Cancel-Lock: sha1:dqmQTVOIUoWdbBeppkAY5LCE/0s= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:51622 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:51622 >>>>> David Abrahams : > Now I've got it pointing at my CVS copy of GNUs (which I've been > careful *not* to byte-compile so that I can use it with XEmacs or > NTEmacs) and things seem to be basically happy (except, of course, > for messages like "you should byte-compile GNUs" ;-)). Why not have two separate CVS checkouts, one for GNU Emacs, and one for XEmacs? It's what I do with the following in ~/.emacs (warning! clumsy lisp by a non-lisper): ;; CVS version of Gnus: (if (string-match "XEmacs" emacs-version) (progn (add-to-list 'load-path (expand-file-name "~sb/cvs/gnus.xemacs/lisp")) (let ((cvs-gnus-info-dir (expand-file-name "~sb/cvs/gnus.xemacs/texi"))) (if (boundp 'Info-directory-list) (add-to-list 'Info-directory-list cvs-gnus-info-dir) (setq Info-directory-list (append (list cvs-gnus-info-dir) Info-default-directory-list))))) ;; GNU Emacs setup (add-to-list 'load-path (expand-file-name "~sb/cvs/gnus/lisp")) ;(load-library "bbdb-autoloads") (let ((cvs-gnus-info-dir (expand-file-name "~sb/cvs/gnus/texi"))) (if (boundp 'Info-directory-list) (add-to-list 'Info-directory-list cvs-gnus-info-dir) (setq Info-directory-list (append (list cvs-gnus-info-dir) Info-default-directory-list))))) A smarter way to handle that Info-directory-list would be appreciated.