From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/28433 Path: main.gmane.org!not-for-mail From: Hrvoje Niksic Newsgroups: gmane.emacs.gnus.general Subject: Re: Updating to gnus 5.8.2 Date: 23 Dec 1999 15:05:01 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: <9t9puvxwy5u.fsf@mraz.iskon.hr> References: <19991209145632.A673@sre-4-139.urbanet.ch> <9t9so1cnr9p.fsf@mraz.iskon.hr> <19991223132128.A3170@sre-4-139.urbanet.ch> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165281 29843 80.91.224.250 (21 Oct 2002 01:54:41 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:54:41 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id AE57ED051F for ; Thu, 23 Dec 1999 09:11:15 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id IAB20041; Thu, 23 Dec 1999 08:07:41 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 23 Dec 1999 08:07:17 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id IAA09022 for ; Thu, 23 Dec 1999 08:07:07 -0600 (CST) Original-Received: from mraz.iskon.hr (mraz.iskon.hr [195.29.170.8]) by mailhost.sclp.com (Postfix) with ESMTP id 24D22D051F for ; Thu, 23 Dec 1999 09:05:24 -0500 (EST) Original-Received: (from hniksic@localhost) by mraz.iskon.hr (8.9.3/8.9.3/Debian 8.9.3-6) id PAA11080; Thu, 23 Dec 1999 15:05:01 +0100 X-Authentication-Warning: mraz.iskon.hr: hniksic set sender to hniksic@iskon.hr using -f Original-To: ding@gnus.org X-Attribution: Hrvoje X-Face: &{dT~)Pu6V<0y?>3p$;@vh\`C7xB~A0T-J%Og)J,@-1%q6Q+, gs<-9M#&`I8cJp2b1{vPE|~+JE+gx;a7%BG{}nY^ehK1"q#rG O,Rn1A_Cy%t]V=Brv7h writes: > (push (expand-file-name "~lconrd/src/gnus-5.8.2/lisp") load-path) > > For some reason, the version you tried, which is in the > instructions, never worked for me either. Except that it has to work, because the `push' statements evaluates to that. Watch this: (macroexpand '(push (expand-file-name "~lconrd/src/gnus-5.8.2/lisp") load-path)) ==> (setq load-path (cons (expand-file-name "~lconrd/src/gnus-5.8.2/lisp") load-path)) Maybe the problem is that I didn't stress the use of `expand-file-name' in my last example. I thought I'd convey the message that the path is absolute by using /path/to/.../. Obviously, the message didn't get across. In XEmacs 21.2 the load-path searching bug has been fixed and you no longer have to expand the file name before use -- XEmacs does that for you.