From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52354 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: Error with latest Gnus Date: Tue, 06 May 2003 07:30:08 -0500 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <87ptmx1t49.fsf@goliathbbs.dnsalias.net> <87of2gwdo6.fsf@goliathbbs.dnsalias.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1052224150 477 80.91.224.249 (6 May 2003 12:29:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 6 May 2003 12:29:10 +0000 (UTC) Original-X-From: ding-owner+M898=ding+2Daccount=gmane.org@lists.math.uh.edu Tue May 06 14:29:08 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 19D1ZD-00007N-00 for ; Tue, 06 May 2003 14:29:08 +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 19D1aY-0005zB-04 for ding-account@gmane.org; Tue, 06 May 2003 07:30:30 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19D1aT-0005z4-00 for ding@lists.math.uh.edu; Tue, 06 May 2003 07:30:25 -0500 Original-Received: (qmail 75285 invoked by alias); 6 May 2003 12:30:25 -0000 Original-Received: (qmail 75264 invoked from network); 6 May 2003 12:30:24 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by sclp3.sclp.com with SMTP; 6 May 2003 12:30:24 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 19D1ca-0006HA-00 for ; Tue, 06 May 2003 14:32:36 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 40 Original-NNTP-Posting-Host: 216.12.206.48 Original-X-Trace: quimby.gnus.org 1052224356 23568 216.12.206.48 (6 May 2003 12:32:36 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 6 May 2003 12:32:36 GMT User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:aJh0TUqUvj6AoaJF4YvLiSV1AZQ= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52354 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52354 Joerg Jaspert writes: > Kevin Greiner writes: > >>> Debugger entered--Lisp error: (invalid-function (macro lambda (group) "Find the real name of a foreign newsgroup." (\` (let ((gname (\, group))) (if (string-match "^[^:]+:" gname) (substring gname (match-end 0)) gname))))) >>> gnus-group-real-name("nnimap+mail:INBOX.Mailinglisten.LWN") >>> #[nil "..." [gnus-newsgroup-name in-debian-devel-announce-group-p string-match "debian.devel.announce" gnus-group-real-name] 4]() >>> run-hooks(gnus-select-article-hook) >>> apply(run-hooks gnus-select-article-hook) >>> (save-current-buffer (apply (quote run-hooks) funcs)) >>> gnus-run-hooks(gnus-select-article-hook) >>> gnus-summary-display-article(216 nil) >>> gnus-summary-select-article(nil nil pseudo) >>> gnus-summary-scroll-up(1) >>> call-interactively(gnus-summary-scroll-up) >> Well, gnus-group-real-name worked here using the group that you >> provided. > > It doesnt matter in which group, its everywhere. > >> The debug message also looks rather bizarre so let's assume that the >> problem is in the byte-compiled file. Try deleting, or at least >> renaming, the gnus-util.elc file so that the gnus-util.el file will be >> loaded. That should either give you a better error message or fix the >> problem. If it is the later, you'll want to recompile gnus-util.el. > > Sorry, i should have written that. This is without byte-compile. With a > byte-compiled file you cant really read/understand the error message. > > I already tried it without any .elc from Gnus. No difference. :() What does (macroexpand '(gnus-group-real-name "nnimap+mail:INBOX.Mailinglisten.LWN")) return? You might also try (progn (debug) (gnus-group-real-name "nnimap+mail:INBOX.Mailinglisten.LWN")) so that you can step into the macro expansion. That can be fairly ugly but this may be an expansion error rather than an evaluation error. Kevin