savannah-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Please make a repo for the GNU C Manual


From: Ian Kelling
Subject: Re: Please make a repo for the GNU C Manual
Date: Mon, 19 Sep 2022 06:53:30 -0400
User-agent: mu4e 1.7.27; emacs 29.0.50

Richard Stallman <rms@gnu.org> writes:

> [[[ To any NSA and FBI agents reading my email: please consider    ]]]
> [[[ whether defending the US Constitution against all enemies,     ]]]
> [[[ foreign or domestic, requires you to follow Snowden's example. ]]]
>
> Does the manual format properly in TeX?

The pdf looks formatted properly. The info file has problems
though. First, it gave an error

$ make c.info
makeinfo c.texi
c.texi:6455: warning: unknown @end data
c.texi:6462: @node seen before @end example
make: *** [Makefile:8: c.info] Error 1

the attached patch fixes that. But then, it doesn't produce c.info, just
a file named c. That file does work as an info file.

>From 3f0244db7793006ae6d7d96ab793417db96c0f5a Mon Sep 17 00:00:00 2001
From: Ian Kelling <iank@fsf.org>
Date: Mon, 19 Sep 2022 06:50:44 -0400
Subject: [PATCH] fix makeinfo error

---
 c.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/c.texi b/c.texi
index 8e89d2f..62ea1be 100644
--- a/c.texi
+++ b/c.texi
@@ -6452,7 +6452,7 @@ as an array, because
 
 @example
 r1.data = r2.data;
-@end data
+@end example
 
 @noindent
 would convert the array objects (as always) to pointers to the initial
-- 
2.34.1


reply via email to

[Prev in Thread] Current Thread [Next in Thread]