From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/72035 Path: news.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Any juicy outstanding Gnus bugs? Date: Mon, 27 Sep 2010 20:45:53 +0200 Organization: Probably a good idea Message-ID: References: <87fwww1bht.fsf@lifelogs.com> <3jtylcurw7.fsf@news.eternal-september.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1285613425 10820 80.91.229.12 (27 Sep 2010 18:50:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 27 Sep 2010 18:50:25 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M20406@lists.math.uh.edu Mon Sep 27 20:50:23 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P0ImJ-0003Z2-2R for ding-account@gmane.org; Mon, 27 Sep 2010 20:50:19 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1P0ImC-0003YK-Uq; Mon, 27 Sep 2010 13:50:13 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1P0ImA-0003Xt-T3 for ding@lists.math.uh.edu; Mon, 27 Sep 2010 13:50:10 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1P0Im6-000421-VH for ding@lists.math.uh.edu; Mon, 27 Sep 2010 13:50:10 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1P0Im6-0007lo-00 for ; Mon, 27 Sep 2010 20:50:06 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P0Im4-0003SA-O9 for ding@gnus.org; Mon, 27 Sep 2010 20:50:04 +0200 Original-Received: from 62.113.137.5 ([62.113.137.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Sep 2010 20:50:04 +0200 Original-Received: from sb by 62.113.137.5 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Sep 2010 20:50:04 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 30 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 62.113.137.5 Mail-Copies-To: never User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.3 (gnu/linux) Cancel-Lock: sha1:fUexHcJP6Mtel8IIk1kHNCoFt1c= X-Spam-Score: -0.7 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:72035 Archived-At: >>>>> Lars Magne Ingebrigtsen : > Richard Riley writes: >> could/should (gnus-load) update the info path to point to the newer gnus >> manual in the git build? It would be nice for it to be handled there for >> debugging phases like this since one often switches back and forth. > Is there an info load path? Yup. Has been for at least 13 years or so. Here are my ~/.emacs stuff for using git gnus: (defvar git-workspace (expand-file-name "~/git")) ;; Git version of Gnus: (let ((git-gnus-directory (if running-xemacs (concat git-workspace "/gnus.xemacs") (concat git-workspace "/gnus")))) (push (concat git-gnus-directory "/lisp") load-path) (let ((git-gnus-info-dir (concat git-gnus-directory "/texi"))) (if (boundp 'Info-directory-list) (push git-gnus-info-dir Info-directory-list) (setq Info-directory-list (append (list git-gnus-info-dir) Info-default-directory-list)))))