From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/8306 Path: main.gmane.org!not-for-mail From: Steven L Baur Newsgroups: gmane.emacs.gnus.general Subject: Re: Make in texinfo/ has been failing for me. Date: 10 Oct 1996 20:49:18 -0700 Sender: steve@deanna.miranova.com Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.89) Content-Type: multipart/mixed; boundary="Multipart_Thu_Oct_10_20:49:17_1996-1" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035148488 11351 80.91.224.250 (20 Oct 2002 21:14:48 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:14:48 +0000 (UTC) Return-Path: Original-Received: (qmail 4158 invoked from smtpd); 11 Oct 1996 04:05:16 -0000 Original-Received: from ifi.uio.no (0@129.240.64.2) by deanna.miranova.com with SMTP; 11 Oct 1996 04:05:15 -0000 Original-Received: from deanna.miranova.com (qmailr@deanna.miranova.com [206.190.83.1]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Fri, 11 Oct 1996 05:46:25 +0200 Original-Received: (qmail 3953 invoked by uid 501); 11 Oct 1996 03:49:19 -0000 Original-To: ding@ifi.uio.no X-Url: http://www.miranova.com/%7Esteve/ Mail-Copies-To: never X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5" f8*@r4ipO6Jl!:Ccqp:9I OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+ In-Reply-To: Lars Magne Ingebrigtsen's message of 10 Oct 1996 23:40:08 +0100 Original-Lines: 47 X-Mailer: Red Gnus v0.47/XEmacs 19.15 Xref: main.gmane.org gmane.emacs.gnus.general:8306 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:8306 --Multipart_Thu_Oct_10_20:49:17_1996-1 Content-Type: text/plain; charset=US-ASCII >>>>> "Lars" == Lars Magne Ingebrigtsen writes: > Wesley.Hardaker@sphys.unil.ch writes: Wes> doing a 'make EMACS=xemacs' in the 'texi' directory has been Wes> failing for me. It prints a message saying its loading the Wes> texinfmt library and then quits without doing anything else. Lars> It's an XEmacs bug, I guess, but I haven't really looked into it. Yup. XEmacs command line processing needs some work. Try brute forcing it with the attached files, and calling them: xemacs -batch -l xemacs-hack-gnusman.el xemacs -batch -l xemacs-hack-messageman.el [It's not pretty but it seems to work] ;; Using the mark to pass bounds this way ;; is kludgy, but it's not worth fixing. -- rms. --Multipart_Thu_Oct_10_20:49:17_1996-1 Content-Type: application/octet-stream; type=emacs-lisp Content-Disposition: attachment; filename="xemacs-hack-gnusman.el" Content-Transfer-Encoding: 7bit (load "texinfmt") (find-file "gnus.texi") (texinfo-every-node-update) (texinfo-format-buffer) (save-buffer) --Multipart_Thu_Oct_10_20:49:17_1996-1 Content-Type: application/octet-stream; type=emacs-lisp Content-Disposition: attachment; filename="xemacs-hack-messageman.el" Content-Transfer-Encoding: 7bit (load "texinfmt") (find-file "message.texi") (texinfo-every-node-update) (texinfo-format-buffer) (save-buffer) --Multipart_Thu_Oct_10_20:49:17_1996-1--