From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/67423 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: registry doc patch Date: Wed, 24 Sep 2008 09:37:29 +0900 Organization: Emacsen advocacy group Message-ID: References: <87abfkmuko.fsf@jondo.cante.net> <86bpzlt5cq.fsf@lifelogs.com> <87prnut63f.fsf@catnip.gol.com> <86vdxlfdtn.fsf@lifelogs.com> <87zlmwoyvs.fsf@marauder.physik.uni-ulm.de> <86zlmvkg8p.fsf_-_@lifelogs.com> <86vdwxnmzf.fsf_-_@lifelogs.com> <8763ow9ssf.fsf@freemail.hu> <86iqswnr9w.fsf@lifelogs.com> <86bpykjefp.fsf@lifelogs.com> <87d4iuu0vc.fsf@marauder.physik.uni-ulm.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1222216763 29579 80.91.229.12 (24 Sep 2008 00:39:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 24 Sep 2008 00:39:23 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M15874@lists.math.uh.edu Wed Sep 24 02:40:20 2008 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1KiIQB-0008Fm-Vd for ding-account@gmane.org; Wed, 24 Sep 2008 02:40:00 +0200 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 1KiIOS-00055Z-Nx; Tue, 23 Sep 2008 19:38:12 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1KiIOR-00055G-Ad for ding@lists.math.uh.edu; Tue, 23 Sep 2008 19:38:11 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1KiIOO-0008GZ-3X for ding@lists.math.uh.edu; Tue, 23 Sep 2008 19:38:11 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1KiIOS-00037V-00 for ; Wed, 24 Sep 2008 02:38:12 +0200 Original-Received: from localhost ([127.0.0.1]:49706) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1KiINm-0002Wk-MW for ding@gnus.org; Tue, 23 Sep 2008 19:37:31 -0500 X-Hashcash: 1:20:080924:ding@gnus.org::lNsOxbmxeE87p3dT:000002Jd 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.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:KY0LFeM5njxpOJnk+3VhmK1saeU= 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 - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:67423 Archived-At: >>>>> Reiner Steib wrote: > Hi, > formating the gnus.texi with MAKEINFO=no fails: > $ emacs -batch -q -no-site-file -l ./infohack.el -f batch-makeinfo gnus.texi > [...] > Formatting: Low-level interface to the spam-stat dictionary ... > Formatting: The Gnus Registry ... > Extraneous text at end of command line > make: *** [gnus] Error 255 > Could someone please fix this? Fixed in the Gnus trunk. For texinfmt.el the @item command used in the @enumerate section seems not to allow argument, so I've modified the lines "@item TITLE\n" into "@item\nTITLE\n\n". BTW, with MAKEINFO=no the Gnus Info files are divided into 24 files (gnus, gnus-1, ..., gnus-23). Those are too small, aren't they? The threshold is hard-coded in `Info-split' (informat.el). A workaround I added to the Japanese edition of the Gnus Info is: --8<---------------cut here---------------start------------->8--- ;; Reduce the number of split Info files. (if (featurep 'xemacs) (if (load "informat.el" t t) (let* ((fn (symbol-function 'Info-split)) (fns (prin1-to-string fn))) (load "informat.elc" t t) (when (and (string-match "\\([\t\n ]+\\)50000\\([\t\n )]+\\)" fns) (condition-case nil (setq fn (byte-compile (read (replace-match "\\1200000\\2" nil nil fns)))) (error nil)) (fset 'Info-split fn))))) (require 'informat) (let* ((fn (symbol-function 'Info-split)) (fns (prin1-to-string fn))) (when (string-match "\\([\t\n ]+\\)50000\\([\t\n ]+\\)" fns) (condition-case nil (fset 'Info-split (read (replace-match "\\1200000\\2" nil nil fns))) (error (fset 'Info-split fn)))))) --8<---------------cut here---------------end--------------->8--- Regards,