Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus Info Files (WinNT)
@ 1999-11-15  9:08 Norbert Koch
  1999-11-15 18:18 ` Rene Matteau
  0 siblings, 1 reply; 4+ messages in thread
From: Norbert Koch @ 1999-11-15  9:08 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 441 bytes --]


Hi!

I can't create the info files from the texi files using the commands
given in the Makefile. I've succeeded in creating them using the
command given in XEmacs Makefile (by Adrian Aichner
<aichner@ecf.teradyne.com>):

$(EMACS) -no-site-file -no-init-file -batch -l texinfmt \
-f batch-texinfo-format 

It's rilly noisy, though.

I had to change gnus.texi (@var{@dots{}} results in @DOTS{} which
can't be handled by texinfo): 

norbert.


[-- Attachment #2: gnus.texi change --]
[-- Type: text/plain, Size: 1483 bytes --]

Index: gnus.texi
===================================================================
RCS file: /usr/local/cvsroot/gnus/texi/gnus.texi,v
retrieving revision 5.114
diff -u -r5.114 gnus.texi
--- gnus.texi	1999/11/12 23:42:16	5.114
+++ gnus.texi	1999/11/15 09:09:12
@@ -10728,15 +10728,15 @@
 name.  Normal regexp match expansion will be done.  See below for
 examples.
 
-@item
-@code{(@var{field} @var{value} @var{[- restrict [- restrict [@dots{}]]]} 
-@var{split})}: If the split is a list, the first element of which is a
-string, then store the message as specified by @var{split}, if header
-@var{field} (a regexp) contains @var{value} (also a regexp).  If
-@var{restrict} (yet another regexp) matches some string after
-@var{field} and before the end of the matched @var{value}, the
-@var{split} is ignored.  If none of the @var{restrict} clauses match,
-@var{split} is processed.
+@item 
+@code{(@var{field} @var{value} [- @var{restrict} [- @var{restrict}
+[@dots{}]]] @var{split})}: If the split is a list, the first element
+of which is a string, then store the message as specified by
+@var{split}, if header @var{field} (a regexp) contains @var{value}
+(also a regexp). If @var{restrict} (yet another regexp) matches some
+string after @var{field} and before the end of the matched
+@var{value}, the @var{split} is ignored. If none of the @var{restrict}
+clauses match, @var{split} is processed.
 
 @item
 @code{(| @var{split}@dots{})}: If the split is a list, and the first

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus Info Files (WinNT)
  1999-11-15  9:08 Gnus Info Files (WinNT) Norbert Koch
@ 1999-11-15 18:18 ` Rene Matteau
  1999-11-15 19:33   ` Hans de Graaff
  1999-11-15 21:49   ` Christophe Cuq
  0 siblings, 2 replies; 4+ messages in thread
From: Rene Matteau @ 1999-11-15 18:18 UTC (permalink / raw)


Norbert,

On NT, I use the make.bat instead of the makefile. It works with Emacs
but I am not sure with XEMACS.

Norbert Koch <n.koch@eai-delta.de> writes:
> Hi!
> 
> I can't create the info files from the texi files using the commands
> given in the Makefile. I've succeeded in creating them using the
> command given in XEmacs Makefile (by Adrian Aichner
> <aichner@ecf.teradyne.com>):

-- 
Rene


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus Info Files (WinNT)
  1999-11-15 18:18 ` Rene Matteau
@ 1999-11-15 19:33   ` Hans de Graaff
  1999-11-15 21:49   ` Christophe Cuq
  1 sibling, 0 replies; 4+ messages in thread
From: Hans de Graaff @ 1999-11-15 19:33 UTC (permalink / raw)


Rene Matteau <matteau@ca.ibm.com> writes:

> On NT, I use the make.bat instead of the makefile. It works with
> Emacs but I am not sure with XEMACS.

I just did that today. make.bat doesn't understand the XEmacs setup,
but the commands on make.bat work fine if you retype them with
xemacs.exe instead of emacs.exe.

Hans


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus Info Files (WinNT)
  1999-11-15 18:18 ` Rene Matteau
  1999-11-15 19:33   ` Hans de Graaff
@ 1999-11-15 21:49   ` Christophe Cuq
  1 sibling, 0 replies; 4+ messages in thread
From: Christophe Cuq @ 1999-11-15 21:49 UTC (permalink / raw)
  Cc: ding

>> "RM" == Rene Matteau <matteau@ca.ibm.com> writes:

  RM> Norbert,
  RM> On NT, I use the make.bat instead of the makefile. It works with Emacs
  RM> but I am not sure with XEMACS.

It has to be modified to run with Xemacs.
I modified mine in June to compile pGnus with Fabrice's b18 Xemacs.

I'm not sure there is a need to set all the stuff at the beginninng of
the file, but I had never sufficient time to test without.

It works like a charm both with W95 and WNT and Xemacs 21.2. b18, b19,
b20


--------------------------------Make.bat-------------------------------
@echo off

set emacs_dir=d:\xemacs

set EMACSLOADPATH=%emacs_dir%\xemacs~1.2\lisp;%emacs_dir%\site-p~1\
set EMACSLOCKDIR=%emacs_dir%\lock
set TERM=CMD

set HOME_SAVE=%HOME%
set HOME_EXISTS=yes
set HOME_DEFAULT=d:\
set HOME=
if "%HOME%" == "%HOME_SAVE%" set HOME_EXISTS=no
if "%HOME_EXISTS%" == "yes" set HOME=%HOME_SAVE%
if "%HOME_EXISTS%" == "no" set HOME=%HOME_DEFAULT%
if "%HOME_EXISTS%" == "no" echo HOME is not set!  Using %HOME% as a default...

Rem Clear PWD so emacs doesn't get confused
set GNUS_PWD_SAVE=%PWD%
set PWD=

cd lisp
call d:\xemacs\xemacs~1.2\i586-p~1\xemacs.exe -batch -q -no-site-file -l ./dgnushack.el -f dgnushack-compile

cd ..\texi
call d:\xemacs\xemacs~1.2\i586-p~1\xemacs.exe -batch -q -no-site-file gnus.texi -l texinfmt -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer
call d:\xemacs\xemacs~1.2\i586-p~1\xemacs.exe -batch -q -no-site-file message.texi -l texinfmt -f texinfo-every-node-update -f texinfo-format-buffer -f save-buffer

-------------------------------------------------------------------------------------

-- 
CHC



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1999-11-15 21:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-11-15  9:08 Gnus Info Files (WinNT) Norbert Koch
1999-11-15 18:18 ` Rene Matteau
1999-11-15 19:33   ` Hans de Graaff
1999-11-15 21:49   ` Christophe Cuq

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).