summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-25 20:53:15 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-25 20:53:15 +0000
commitda850a17a09cc7ce2c06c90fb3f9338cfd500ca1 (patch)
treedbe6547265d8e17bc7af94b2905ccd44279b2fe8
parent72f21ba82a2d8ee361ea3ac3901f03d86c146e3d (diff)
downloadATCD-da850a17a09cc7ce2c06c90fb3f9338cfd500ca1.tar.gz
Tue Jul 25 20:52:51 UTC 2006 William R. Otte <wotte@dre.vanderbilt.edu>
-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"