[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: fonttextsize in lispref/elisp.texi
From: |
Lute Kamstra |
Subject: |
Re: fonttextsize in lispref/elisp.texi |
Date: |
Mon, 14 Aug 2006 10:27:39 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) |
Eli Zaretskii <address@hidden> writes:
>> It works there because
>> man/texinfo.tex was hacked to define fonttextsize. Shall I copy
>> man/texinfo.tex to lispref/texinfo.tex?
>>
>> Please do.
>
> Isn't it better to use -I switch to makeinfo to force it to use
> man/texinfo.tex?
I think so. What about this patch?
Lute.
Index: lispref/Makefile.in
===================================================================
RCS file: /cvsroot/emacs/emacs/lispref/Makefile.in,v
retrieving revision 1.37
diff -c -r1.37 Makefile.in
*** lispref/Makefile.in 6 Feb 2006 11:55:09 -0000 1.37
--- lispref/Makefile.in 14 Aug 2006 08:14:56 -0000
***************
*** 27,32 ****
--- 27,33 ----
address@hidden@
infodir = $(srcdir)/../info
+ mandir = $(srcdir)/../man
TEXI2DVI = texi2dvi
SHELL = /bin/sh
***************
*** 103,109 ****
$(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp
elisp.dvi: $(srcs)
! $(TEXI2DVI) -I $(srcdir) $(srcdir)/elisp.texi
# This is for use in a separate distro of the Emacs Lisp manual.
install: elisp
--- 104,110 ----
$(MAKEINFO) -I. -I$(srcdir) $(srcdir)/elisp.texi -o $(infodir)/elisp
elisp.dvi: $(srcs)
! $(TEXI2DVI) -I $(srcdir):$(mandir) $(srcdir)/elisp.texi
# This is for use in a separate distro of the Emacs Lisp manual.
install: elisp