From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47964 Path: main.gmane.org!not-for-mail From: ShengHuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Trouble selecting group in recent cvs Date: Fri, 29 Nov 2002 20:01:18 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: <2nadjran1d.fsf@zsh.cs.rochester.edu> References: <87wumxmfjt.fsf@athene.jamux.com> <84k7iwjytf.fsf@lucy.cs.uni-dortmund.de> <871y541n1p.fsf@athene.jamux.com> <84el94ie1o.fsf@lucy.cs.uni-dortmund.de> <87of88oukx.fsf@athene.jamux.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1038628219 5223 80.91.224.249 (30 Nov 2002 03:50:19 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 30 Nov 2002 03:50:19 +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 18Hydy-0001Lq-00 for ; Sat, 30 Nov 2002 04:50:14 +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 18HyeE-0002CZ-00; Fri, 29 Nov 2002 21:50:30 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 29 Nov 2002 21:51:19 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id VAA02621 for ; Fri, 29 Nov 2002 21:51:01 -0600 (CST) Original-Received: (qmail 1343 invoked by alias); 30 Nov 2002 01:05:48 -0000 Original-Received: (qmail 1272 invoked from network); 30 Nov 2002 01:02:11 -0000 Original-Received: from roc-24-58-65-187.rochester.rr.com (HELO piglet.jia.vnet) (@24.58.65.187) by gnus.org with SMTP; 30 Nov 2002 01:02:11 -0000 Original-Received: from piglet.jia.vnet (IDENT:0LYVSCA49G0qYphTDXwXcPiM9T2oqOyg@localhost [127.0.0.1]) by piglet.jia.vnet (8.12.5/8.12.5) with ESMTP id gAU11J4Q010469 for ; Fri, 29 Nov 2002 20:01:19 -0500 Original-Received: (from zsh@localhost) by piglet.jia.vnet (8.12.5/8.12.5/Submit) id gAU11IZh010467; Fri, 29 Nov 2002 20:01:18 -0500 X-Authentication-Warning: piglet.jia.vnet: zsh set sender to zsh@cs.rochester.edu using -f Original-To: ding@gnus.org X-Attribution: ZSH X-Face: #zw9`a=vHLkn+ZH8C (jam@jamux.com's message of "Fri, 29 Nov 2002 17:54:38 -0500") User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47964 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47964 jam@jamux.com (John A. Martin) writes: [...] > ,---- > | (defun gnus-summary-highlight-line-0 () > | (if (and (eq gnus-summary-highlight-line-trigger > | gnus-summary-highlight) > | gnus-summary-highlight-line-cached) > | gnus-summary-highlight-line-cached > | (setq gnus-summary-highlight-line-trigger gnus-summary-highlight > | gnus-summary-highlight-line-cached > | (let* ((cond (list 'cond)) > | (c cond) > | (list gnus-summary-highlight)) > | (while list > | (setcdr c (cons (list (caar list) (list 'quote (cdar list))) nil)) > | (setq c (cdr c) > | list (cdr list))) > | (gnus-byte-compile (list 'lambda nil cond)))))) > `---- > > the while is exited with nil. It is for sure nil over the first few > iterations. I can't seem to get edebug to run up to a breakpoint and > show the value coming out of the loop. For example, SPACE doesn't > seem to work here for me. It is probably related to gnus-byte-compile. It seems that gnus-byte-compile doesn't work correctly in some versions of XEmacs for some unknown reasons. The work around is to set gnus-use-byte-compile to nil in .gnus. Or (defalias 'gnus-byte-compile 'identity) ShengHuo