From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/33785 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: Emacs hangs when converting gnus.texi Date: 20 Dec 2000 03:58:14 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: <2nhf3z3ksi.fsf@tiger.jia.vnet> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035169828 26936 80.91.224.250 (21 Oct 2002 03:10:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:10:28 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id AFEB6D049D for ; Tue, 19 Dec 2000 22:01:40 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id VAB08803; Tue, 19 Dec 2000 21:01:40 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 19 Dec 2000 21:00:59 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id VAA29047 for ; Tue, 19 Dec 2000 21:00:50 -0600 (CST) Original-Received: from fe160.worldonline.dk (fe160.worldonline.dk [212.54.64.198]) by mailhost.sclp.com (Postfix) with SMTP id B7A7FD049D for ; Tue, 19 Dec 2000 22:01:14 -0500 (EST) Original-Received: (qmail 27229 invoked by uid 0); 20 Dec 2000 03:01:10 -0000 Original-Received: from 4.ppp1-4.odn.worldonline.dk (HELO localhost) (212.54.68.4) by fe160.worldonline.dk with SMTP; 20 Dec 2000 03:01:10 -0000 Original-Received: from localhost (127.0.0.1) by localhost (127.0.0.1) with esmtp ; Wed, 20 Dec 2000 03:58:15 +0100 Original-To: ding@gnus.org In-Reply-To: <2nhf3z3ksi.fsf@tiger.jia.vnet> Original-Lines: 18 User-Agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:33785 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:33785 --=-=-= ShengHuo ZHU writes: > Jesper Harder writes: > > > With recent Gnus snapshots ntEmacs hangs while trying to convert > > gnus.texi to Info files, [...] But if I remove the -batch option > > everything works fine. > > It works fine when I use make.bat. Anyone else sees the problem? It turned out that I had to increase max-lisp-eval-depth to make it work. Does this limit work differently in batch mode? Anyway, it works for me with this change: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=make.bat.diff --- make.bat Wed Dec 20 03:37:08 2000 +++ make.bat Wed Dec 20 03:43:04 2000 @@ -44,7 +44,7 @@ cd ..\texi call %1\bin\%emacs% -batch -q -no-site-file message.texi -eval %EMACSINFOHACK% -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer call %1\bin\%emacs% -batch -q -no-site-file emacs-mime.texi -eval %EMACSINFOHACK% -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer -call %1\bin\%emacs% -batch -q -no-site-file gnus.texi -eval %EMACSINFOHACK% -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer +call %1\bin\%emacs% -batch -q -no-site-file gnus.texi -eval %EMACSINFOHACK% -eval "(setq max-lisp-eval-depth 600)" -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer if not "%2" == "copy" goto done copy gnus %1\info copy gnus-?? %1\info --=-=-=--