From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64099 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Emacs 21 and XEmacs don't know `?\s' Date: Tue, 12 Dec 2006 18:23:58 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1165915524 16102 80.91.229.10 (12 Dec 2006 09:25:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 12 Dec 2006 09:25:24 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M12622@lists.math.uh.edu Tue Dec 12 10:25:23 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by dough.gmane.org with esmtp (Exim 4.50) id 1Gu3sx-0001s5-CU for ding-account@gmane.org; Tue, 12 Dec 2006 10:25:15 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Gu3sS-0001EI-SZ; Tue, 12 Dec 2006 03:24:44 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Gu3sQ-0001Dt-QX for ding@lists.math.uh.edu; Tue, 12 Dec 2006 03:24:42 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1Gu3sK-000883-Rb for ding@lists.math.uh.edu; Tue, 12 Dec 2006 03:24:42 -0600 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Gu3sJ-0006U2-00 for ; Tue, 12 Dec 2006 10:24:36 +0100 Original-Received: from [66.225.201.151] (port=38540 helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.52) id 1Gu3rp-0008MB-Ag; Tue, 12 Dec 2006 03:24:05 -0600 Original-To: Chong Yidong X-Hashcash: 1:20:061212:cyd@stupidchicken.com::i5fI8IlROrPUSjrq:00000000000000000000000000000000000000005104 X-Hashcash: 1:20:061212:ding@gnus.org::zsMv5BQHHsmMZa3+:000000ff 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&( User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.91 (gnu/linux) Cancel-Lock: sha1:Wy1y+3v6MNPARFiMdDj/y6u0yxg= X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64099 Archived-At: Hi, In this change --8<---------------cut here---------------start------------->8--- --- gnus-sum.el:7.167 Sun Dec 10 16:54:25 2006 +++ gnus-sum.el Tue Dec 12 08:29:44 2006 [...] +(defun gnus-make-thread-indent-array (&optional n) + (when (or n + (progn (setq n 200) nil) + (null gnus-thread-indent-array) + (/= gnus-thread-indent-level gnus-thread-indent-array-level)) + (setq gnus-thread-indent-array (make-vector (1+ n) "") + gnus-thread-indent-array-level gnus-thread-indent-level) + (while (>= n 0) + (aset gnus-thread-indent-array n + (make-string (* n gnus-thread-indent-level) ?\s)) + (setq n (1- n))))) --8<---------------cut here---------------end--------------->8--- `?\s' causes an error when compiling Gnus using Emacs 21 as follows: While compiling toplevel forms in file gnus/lisp/deuglify.el: !! error (("Invalid escape character syntax")) Moreover, XEmacs regards `?\s' as `?s', so the summary buffer is filled up with `s' characters. Please fix it. Regards,