Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b6cf78 commit 3d913adCopy full SHA for 3d913ad
1 file changed
Doc/Makefile
@@ -166,8 +166,15 @@ api.ps: api.dvi
166
167
.PRECIOUS: lib.texi
168
169
+# The sed script in this target fixes a really nasty little condition in
170
+# libcgi.tex where \e has to be used in a group to get the right behavior,
171
+# and makeinfo can't handle a group with a leading @command. But at least
172
+# the info file gets generated.
173
+
174
lib1.texi: lib*.tex texipre.dat texipost.dat partparse.pyc
175
$(PARTPARSE) -o lib1.texi `./whichlibs`
176
+ sed 's/"{\\}n{\\}n/"\\n\\n/' lib1.texi >lib2.texi
177
+ mv lib2.texi lib1.texi
178
179
lib.texi: lib1.texi fix.el
180
$(EMACS) -batch -l fix.el -f save-buffer -kill
0 commit comments