From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47584 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Wrong type argument: stringp when Generating cus-load.el Date: Thu, 07 Nov 2002 18:07:46 +0900 Organization: Emacsen advocacy group 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: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1036660056 6957 80.91.224.249 (7 Nov 2002 09:07:36 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 7 Nov 2002 09:07:36 +0000 (UTC) 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 189idR-0001nm-00 for ; Thu, 07 Nov 2002 10:07:33 +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 189ieK-000481-00; Thu, 07 Nov 2002 03:08:28 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 07 Nov 2002 03:09:13 -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 DAA13982 for ; Thu, 7 Nov 2002 03:08:58 -0600 (CST) Original-Received: (qmail 19783 invoked by alias); 7 Nov 2002 09:08:04 -0000 Original-Received: (qmail 19778 invoked from network); 7 Nov 2002 09:08:02 -0000 Original-Received: from unknown (HELO mars.web-hosting.com) (207.228.244.150) by gnus.org with SMTP; 7 Nov 2002 09:08:02 -0000 Original-Received: from localhost ([207.228.245.242]) by mars.web-hosting.com (8.11.1/8.11.1) with ESMTP id gA797xs29851 for ; Thu, 7 Nov 2002 04:07:59 -0500 (EST) Original-To: ding@gnus.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) XEmacs/21.4 (Military Intelligence, sparc-sun-solaris2.6) X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( Cancel-Lock: sha1:N8wTobPCKV2o9jxxieMaFDhnLKA= X-Hashcash: 021107:ding@gnus.org:d11ffdf6b15b0889 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47584 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47584 --=-=-= >>>>> In <873cqdbxts.fsf@glaurung.green-gryphon.com> >>>>> Manoj Srivastava wrote: Katsumi> Well, I have surely seen that somewhere, however it has slipped Katsumi> my memory. It is all that I remembered emacs-w3m is unrelated Katsumi> to such a problem. Didn't you use the alpha version of Emacs? > I submitted a bug report about it a couple of weeks ago. And > no, I was not using the alpha version of emacs either. > I have been using a non-byte-compiled version for some time > now. Oh, that's too bad. Possibly it was your report which I looked at. Could you try the following work? And please show us the Lisp backtrace if it appears. Run Emacs in the Gnus source directory. % cd Gnus-source/lisp % emacs-21.2 -q -no-site-file& Copy the following lines into the *scratch* buffer and type C-j at the end of the last line. --=-=-= Content-Type: application/emacs-lisp Content-Disposition: inline (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)))) --=-=-= Content-Disposition: inline ;; It may not finish only with this work. -- Katsumi Yamaoka --=-=-=--