textual replacement VT_* to CP_*, to avoid conflict in the windows world

This commit is contained in:
rlar
2010-07-17 20:48:20 +00:00
parent 0aa1c09d73
commit a76cd1e104
68 changed files with 292 additions and 283 deletions
+9
View File
@@ -1,3 +1,12 @@
2010-07-17 Robert Larice
* src/* :
textual replacement VT_* to CP_*
these are the enum constans of `enum vp_types' .
VT_* is allready used in the windows world.
lets use CP_* to avoid conflicts.
replacement was done mechanical, with:
perl -pi -e 's/VT_(BOOL|NUM|REAL|STRING|LIST)/CP_\1/g' $(git grep -le '\bVT_')
2010-07-17 Robert Larice
* src/frontend/variable.c ,
* src/frontend/variable.h ,