From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47586 Path: main.gmane.org!not-for-mail From: Andi Hechtbauer Newsgroups: gmane.emacs.gnus.general Subject: Re: Wrong type argument: stringp when Generating cus-load.el Date: Thu, 07 Nov 2002 12:59:54 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: <873cqdbxts.fsf@glaurung.green-gryphon.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1036669795 5745 80.91.224.249 (7 Nov 2002 11:49:55 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 7 Nov 2002 11:49:55 +0000 (UTC) Cc: ding@gnus.org 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 189lAW-0001UF-00 for ; Thu, 07 Nov 2002 12:49:52 +0100 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 189lAr-0004gV-00; Thu, 07 Nov 2002 05:50:13 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 07 Nov 2002 05:50:58 -0600 (CST) 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 FAA14497 for ; Thu, 7 Nov 2002 05:50:41 -0600 (CST) Original-Received: (qmail 7937 invoked by alias); 7 Nov 2002 11:49:49 -0000 Original-Received: (qmail 7932 invoked from network); 7 Nov 2002 11:49:49 -0000 Original-Received: from hop.spin.de (62.208.121.5) by gnus.org with SMTP; 7 Nov 2002 11:49:49 -0000 Original-Received: (qmail 27317 invoked from network); 7 Nov 2002 11:42:51 -0000 Original-Received: from unknown (HELO red.hq.spin.de) (217.235.83.124) by hop.spin.de with DES-CBC3-SHA encrypted SMTP cert postmaster@spin.de; 7 Nov 2002 11:42:51 -0000 Original-Received: from hic.hq.spin.de (hic.hq.spin.de [192.168.1.138]) by red.hq.spin.de (Postfix) with ESMTP id 5113C3CF9; Thu, 7 Nov 2002 13:48:34 +0100 (CET) Original-Received: from anti by hic.hq.spin.de with local (Exim 3.36 #1 (Debian)) id 189lKE-0001bs-00; Thu, 07 Nov 2002 12:59:54 +0100 Original-To: Katsumi Yamaoka X-PGP-Key-ID: 4E6E583C X-PGP-Key-At: http://staff.spin.de/~anti/anti.key.txt X-PGP-Fingerprint: 1E56 49B2 20C4 6B6E 88F2 C6B7 0230 2F52 4E6E 583C In-Reply-To: (Katsumi Yamaoka's message of "Thu, 07 Nov 2002 18:07:46 +0900") Original-Lines: 41 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47586 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47586 >>>>> On Thu, 07 Nov 2002 18:07:46 +0900, Katsumi Yamaoka said: Katsumi> Run Emacs in the Gnus source directory. $ emacs --version GNU Emacs 21.2.2 [...] Katsumi> % cd Gnus-source/lisp % emacs-21.2 -q -no-site-file& Katsumi> Copy the following lines into the *scratch* buffer and Katsumi> type C-j at the end of the last line. ,---- | (progn | (setq debug-on-error t | command-line-args-left '(".")) | (load "cus-dep.el" nil nil t) | (let ((ke (symbol-function 'kill-emacs))) | (fset 'kill-emacs 'ignore) | (unwind-protect | (custom-make-dependencies) | (fset 'kill-emacs ke)))) `---- Gives me this *Backtrace*: Debugger entered--Lisp error: (file-error "Cannot open load file" "cus-dep.el") load("cus-dep.el" nil nil t) (progn (setq debug-on-error t command-line-args-left (quote ...)) (load "cus-dep.el" nil nil t) (let (...) (fset ... ...) (unwind-protect ... ...))) eval((progn (setq debug-on-error t command-line-args-left (quote ...)) (load "cus-dep.el" nil nil t) (let (...) (fset ... ...) (unwind-protect ... ...)))) eval-last-sexp-1(t) eval-last-sexp(t) eval-print-last-sexp() call-interactively(eval-print-last-sexp) Well - there is no such file, so that seems clear to me. Thanks for your help, Andi