commit-womb
[Top][All Lists]
Advanced

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

[commit-womb] qualitycode qualitycode.texi


From: Karl Berry
Subject: [commit-womb] qualitycode qualitycode.texi
Date: Fri, 19 Nov 2010 22:40:53 +0000

CVSROOT:        /sources/womb
Module name:    qualitycode
Changes by:     Karl Berry <karl>       10/11/19 22:40:53

Modified files:
        .              : qualitycode.texi 

Log message:
        downcase section names, simplify FDL

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qualitycode/qualitycode.texi?cvsroot=womb&r1=1.3&r2=1.4

Patches:
Index: qualitycode.texi
===================================================================
RCS file: /sources/womb/qualitycode/qualitycode.texi,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- qualitycode.texi    19 Nov 2010 20:50:49 -0000      1.3
+++ qualitycode.texi    19 Nov 2010 22:40:53 -0000      1.4
@@ -1,5 +1,5 @@
 \input texinfo   @c -*-texinfo-*-
address@hidden $Id: qualitycode.texi,v 1.3 2010/11/19 20:50:49 civodul Exp $
address@hidden $Id: qualitycode.texi,v 1.4 2010/11/19 22:40:53 karl Exp $
 @comment %**start of header
 @setfilename qualitycode.info
 @set UPDATED 18 November 2010
@@ -17,14 +17,9 @@
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.3 or
 any later version published by the Free Software Foundation; with no
-Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
-and with the Back-Cover Texts as in (a) below.  A copy of the
-license is included in the section entitled ``GNU Free Documentation
-License.''
-
-(a) The FSF's Back-Cover Text is: ``You have the freedom to
-copy and modify this GNU manual.  Buying copies from the FSF
-supports it in developing GNU and promoting software freedom.''
+Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+Texts.  A copy of the license is included in the section entitled
+``GNU Free Documentation License''.
 @end quotation
 @end copying
 
@@ -52,14 +47,14 @@
 @end ifnottex
 
 @menu
-* Memory Management::
+* Memory management::
 * GNU Free Documentation License::
 * Index::
 @end menu
 
 
address@hidden Memory Management
address@hidden Memory Management
address@hidden Memory management
address@hidden Memory management
 
 C, C++, and similar languages let programmers in charge of managing
 memory and ensuring that application code does not access invalid memory
@@ -75,8 +70,8 @@
 
 @menu
 * Valgrind::                    Run-time memory management analysis.
-* Compiler Support::            GCC support for debugging memory issues.
-* C Library Support::           GNU C Library support.
+* Compiler support::            GCC support for debugging memory issues.
+* C library support::           GNU C Library support.
 @end menu
 
 
@@ -96,6 +91,7 @@
 $ valgrind -- ./foo --bar
 @end example
 
address@hidden memcheck
 It runs Valgrind with its default analysis tool, @code{memcheck},
 which reports memory management and access errors in a human-readable
 way.  With the @code{--leak-check=full} option, Valgrind and
@@ -110,7 +106,7 @@
 
 @cindex Gnulib, and Valgrind
 To ease automatic use of Valgrind for running tests, Gnulib
-(@pxref{Introduction,,,gnulib,GNU Gnulib}) contains a module named
+(@pxref{Introduction,,, gnulib, GNU Gnulib}) contains a module named
 @code{valgrind} which provides a @file{valgrind-tests.m4} file that
 will search for the valgrind tool and provides the @code{VALGRIND}
 variable to contain commands used to launch it.  By default it runs
@@ -126,8 +122,8 @@
 serious bug will trigger an error message.
 
 
address@hidden Compiler Support
address@hidden Compiler Support
address@hidden Compiler support
address@hidden Compiler support
 
 @c FIXME: Incomplete.
 The GNU Compiler Collection provides support for detecting common memory
@@ -144,8 +140,8 @@
 @end enumerate
 
 
address@hidden C Library Support
address@hidden C Library Support
address@hidden C library support
address@hidden C library support
 
 @c FIXME: Incomplete.
 @itemize



reply via email to

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