summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ChangeLog14
-rw-r--r--ACE/bin/PythonACE/fuzz/cpp_inline.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index ca759b3cf14..f46979b4090 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,17 @@
+Tue Jul 25 20:52:51 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * bin/PythonACE/fuzz/cpp_inline.py
+
+ Fixed this check, it was incorrectly matching ACE_INLINES inside
+ defines and comments.
+
+Tue Jul 25 20:16:26 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * docs/svn/svn-prefs.reg
+ * docs/svn/config
+
+ Updated to add global-ignores to mimic .cvsignore functionality.
+
Tue Jul 25 19:40:54 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
* bin/PythonACE/__init__.py
diff --git a/ACE/bin/PythonACE/fuzz/cpp_inline.py b/ACE/bin/PythonACE/fuzz/cpp_inline.py
index 92afe0b1e38..1db614c103b 100644
--- a/ACE/bin/PythonACE/fuzz/cpp_inline.py
+++ b/ACE/bin/PythonACE/fuzz/cpp_inline.py
@@ -5,7 +5,7 @@ type_list = source_files
import re
from sys import stderr
-regex = re.compile ("(ACE_INLINE)|(ASYS_INLINE)")
+regex = re.compile ("(^\s*ACE_INLINE)|(^\s*ASYS_INLINE)", re.MULTILINE)
error_message = ": error: ACE_INLINE or ASYS_INLINE found in .cpp file\n"