changeset 2710:25584f5a3f55

* cdl/infra.cdl (CYGFUN_INFRA_EMPTY_DELETE_FUNCTIONS): Escape square brackets in description.
author jlarmour
date Tue, 06 Jan 2009 16:29:39 +0000
parents dd813352ed34
children eacd6295a6aa
files packages/infra/current/ChangeLog packages/infra/current/cdl/infra.cdl
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/packages/infra/current/ChangeLog
+++ b/packages/infra/current/ChangeLog
@@ -9,6 +9,11 @@ 2008-07-10  Grant Edwards <grant.b.edwar
         * src/diag.cxx: allow ASCII escape character in printf
         format strings.
 
+2008-01-10  Jonathan Larmour  <jifl@eCosCentric.com>
+
+	* cdl/infra.cdl (CYGFUN_INFRA_EMPTY_DELETE_FUNCTIONS): Escape square
+	brackets in description.	
+
 2007-12-28  Oyvind Harboe <oyvind.harboe@zylin.com>
 	
 	* src/memcpy.cxx: added assert when memory areas for memcpy()
--- a/packages/infra/current/cdl/infra.cdl
+++ b/packages/infra/current/cdl/infra.cdl
@@ -169,7 +169,7 @@ cdl_package CYGPKG_INFRA {
             increases code and data size needlessly.
             
             To defeat this undesirable behaviour, we define empty versions
-            of delete and delete[].  But doing this prevents proper use
+            of delete and delete\[\].  But doing this prevents proper use
             of dynamic memory in C++ programs via C++'s new and delete
             operators.