[Gnucash-changes] Patch from Chris Shoemaker to silence a texinfo warning.

David Hampton hampton at cvs.gnucash.org
Fri Oct 14 00:19:04 EDT 2005


Log Message:
-----------
Patch from Chris Shoemaker to silence a texinfo warning.

Tags:
----
gnucash-gnome2-dev

Modified Files:
--------------
    gnucash/src/doc/design:
        engine.texinfo

Revision Data
-------------
Index: engine.texinfo
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/doc/design/engine.texinfo,v
retrieving revision 1.48.4.2
retrieving revision 1.48.4.3
diff -Lsrc/doc/design/engine.texinfo -Lsrc/doc/design/engine.texinfo -u -r1.48.4.2 -r1.48.4.3
--- src/doc/design/engine.texinfo
+++ src/doc/design/engine.texinfo
@@ -246,7 +246,7 @@
 @subsection How to use GUIDs
 
 The Engine API functions which access the GUID for a specific entity
-return a pointer to the GUID. @strong{Note:} Do not store the pointer
+return a pointer to the GUID.  NOTE: Do not store the pointer
 itself! Instead, store a copy of the GUID. Storing the pointer itself
 would present some of the same problems as using the account pointer
 directly. Example:
@@ -282,12 +282,12 @@
 You can encode and decode GUIDs and their string representations using the
 next two functions.
 
- at deftypefun {char *} guid_to_string (const GUID * @var{guid})
+ at deftypefun {const char *} guid_to_string (const GUID * @var{guid})
 Return a null-terminated string encoding of @var{guid}. String encodings
 of identifiers are hex numbers printed only with the characters @code{0}
 through @code{9} and @code{a} through @code{f}.  The encoding will
 always be @code{GUID_ENCODING_LENGTH} characters long. The returned
-string should be freed when no longer needed.
+string must NOT be freed when no longer needed.
 @end deftypefun
 
 @deftypefun {char *} guid_to_string_buff (const GUID * @var{guid}, char * @var{buff})


More information about the gnucash-changes mailing list