From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/36787 Path: main.gmane.org!not-for-mail From: "Yair Friedman (Jerusalem)" Newsgroups: gmane.emacs.gnus.general Subject: [patch] make.bat and texinfo. Date: Wed, 04 Jul 2001 17:20:20 +0200 Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035172315 10443 80.91.224.250 (21 Oct 2002 03:51:55 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:51:55 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 18390 invoked from network); 4 Jul 2001 14:20:48 -0000 Original-Received: from lovely.amdocs.com (204.151.97.17) by gnus.org with SMTP; 4 Jul 2001 14:20:48 -0000 Original-Received: from amdocs.com (speedy1.amdocs.com [204.151.97.67]) by lovely.amdocs.com (8.9.3/8.9.3) with ESMTP id RAA03406 for ; Wed, 4 Jul 2001 17:20:26 +0200 (IST) Original-Received: from YAIRFRNT (localhost [127.0.0.1]) by amdocs.com (8.9.3+Sun/8.9.3) with ESMTP id RAA26674 for ; Wed, 4 Jul 2001 17:18:09 +0300 (IDT) Original-To: Gnus Mailing List User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.6 Original-Lines: 7 Xref: main.gmane.org gmane.emacs.gnus.general:36787 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:36787 --=-=-= Hi, Can someone apply this patch? Thanks. --=-=-= Content-Type: text/x-patch; charset=iso-8859-1 Content-Disposition: inline; filename=patch Content-Transfer-Encoding: quoted-printable --- ChangeLog.orig Thu May 17 10:44:26 2001 +++ ChangeLog Wed Jul 04 16:57:34 2001 @@ -1,3 +1,7 @@ +2001-07-04 Yair Friedman + + * make.bat: Use infohack.el to create info files. + 2001-05-17 Kai Gro=DFjohann =20 * etc/Makefile.in (datadir): Set this variable, like in the other --- make.bat.orig Tue Jan 16 00:00:00 2001 +++ make.bat Wed Jul 04 09:31:26 2001 @@ -40,11 +40,11 @@ copy *.el* %1\lisp\gnus =20 :info -set EMACSINFOHACK=3D"(while (re-search-forward \"@\\(end \\)?ifnottex\" ni= l t) (replace-match \"\"))" +set EMACSINFO=3Dcall %1\bin\%emacs% -no-site-file -no-init-file -batch -q = -l infohack.el -f batch-makeinfo cd ..\texi -call %1\bin\%emacs% -batch -q -no-site-file message.texi -eval %EMACSINFOH= ACK% -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 %EMACSIN= FOHACK% -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 te= xinfo-format-buffer -f save-buffer +%EMACSINFO% message.texi +%EMACSINFO% emacs-mime.texi +%EMACSINFO% gnus.texi if not "%2" =3D=3D "copy" goto done copy gnus %1\info copy gnus-?? %1\info --=-=-=--