bug-commoncpp
[Top][All Lists]
Advanced

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

Re: mekeinfo unknowns command 'verbatim'


From: Federico Montesino Pouzols
Subject: Re: mekeinfo unknowns command 'verbatim'
Date: Thu, 12 Sep 2002 17:29:59 +0200
User-agent: Mutt/1.4i

        Hi, the problem is that @verbatim is defined starting from
texinfo 4.1. Here is a patch that fixes it:


Index: commoncpp2.texi
===================================================================
RCS file: /cvsroot/commoncpp/commoncpp2/doc/commoncpp2.texi,v
retrieving revision 1.3
diff -u -r1.3 commoncpp2.texi
--- commoncpp2.texi     30 Aug 2002 14:26:56 -0000      1.3
+++ commoncpp2.texi     12 Sep 2002 15:25:49 -0000
@@ -476,7 +476,7 @@
 @tindex InetAddress
 @tindex InetHostAddress
 @tindex InetMaskAddress
address@hidden InetBroadcastAddress
address@hidden BroadcastAddress
 The network name and address objects are all derived from a common
 InetAddress base class. Specific classes, such as InetHostAddress,
 InetMaskAddress, etc, are defined from InetAddress entirely so that
@@ -485,7 +485,7 @@
 misuse of the wrong address object.  For example, a "connection" to
 something that is declared as a "InetHostAddress" can be kept
 type-safe from a "connection" accidently being made to something that
-was declared a "InetBroadcastAddress".
+was declared a "BroadcastAddress".
 
 @tindex Socket
 @cindex QoS
@@ -742,25 +742,25 @@
 might define something like:
 
 @example
address@hidden
address@hidden
 class KeyPaths : public Keydata
-{
address@hidden
 public:
-       KeyPaths() : Keydata("/server/paths")
-       {
-               static KEYDEF *defvalues = {
-               {"datafiles", "/var/server"},
-               {NULL, NULL}};
-
-               // override with [paths] from "~/.serverrc" if avail.
-
-               Load("~server/paths");
-               Load(defvalues);
-       }
-};
+        KeyPaths() : Keydata("/server/paths")
+        @{
+                static KEYDEF *defvalues = @{
+                @{"datafiles", "/var/server"@},
+                @{NULL, address@hidden@};
+
+                // @r{override with [paths] from "~/.serverrc" if avail.}
+
+                Load("~server/paths");
+                Load(defvalues);
+        @}
address@hidden;
 
 KeyPaths keypaths;
address@hidden verbatim
address@hidden cartouche
 @end example
 


On Wed, Sep 11, 2002 at 04:50:25PM -0300, Marcelo Dalmas wrote:
> 
> Hi,
> 
> makeinfo unknowns command verbatim:
> 
> make[1]: Entering directory `/usr/local/src/commoncpp2/doc'
> cd . \
>   && makeinfo `echo commoncpp2.texi | sed 's,.*/,,'`
> commoncpp2.texi:745: Unknown command `verbatim'.
> 
> I'm using Conectiva 7.0 and texinfo-4.0. What's wrong?
> 
> Thanks.
> 
> Marcelo Dalmas
> BRASMAP Sistemas
> www.brasmap.com.br
> Fone/Fax: (48) 333-2218 ramal 2114
> 
> 
> 
> 
> 
> _______________________________________________
> Bug-commoncpp mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/bug-commoncpp




reply via email to

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