summaryrefslogtreecommitdiffstats
path: root/Source/cmMacroCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-10-10 15:47:43 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-10-10 15:47:43 (GMT)
commit8d32d229a3b77f7cb0dd708c6a492fa33797b9f0 (patch)
tree616c727c9b0609549374c223079b367172bffeff /Source/cmMacroCommand.h
parent8e4c7b99e1b73c641308c0177673dac33fe57df1 (diff)
downloadCMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.zip
CMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.tar.gz
CMake-8d32d229a3b77f7cb0dd708c6a492fa33797b9f0.tar.bz2
ENH: make commands lower case by default
Diffstat (limited to 'Source/cmMacroCommand.h')
-rw-r--r--Source/cmMacroCommand.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmMacroCommand.h b/Source/cmMacroCommand.h
index d93bdd8..f0df9c4 100644
--- a/Source/cmMacroCommand.h
+++ b/Source/cmMacroCommand.h
@@ -69,7 +69,7 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual const char* GetName() { return "MACRO";}
+ virtual const char* GetName() { return "macro";}
/**
* Succinct documentation.
@@ -85,14 +85,14 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " MACRO(<name> [arg1 [arg2 [arg3 ...]]])\n"
+ " macro(<name> [arg1 [arg2 [arg3 ...]]])\n"
" COMMAND1(ARGS ...)\n"
" COMMAND2(ARGS ...)\n"
" ...\n"
- " ENDMACRO(<name>)\n"
+ " endmacro(<name>)\n"
"Define a macro named <name> that takes arguments named "
- "arg1 arg2 arg3 (...). Commands listed after MACRO, "
- "but before the matching ENDMACRO, are not invoked until the macro "
+ "arg1 arg2 arg3 (...). Commands listed after macro, "
+ "but before the matching endmacro, are not invoked until the macro "
"is invoked. When it is invoked, the commands recorded in the "
"macro are first modified by replacing formal parameters (${arg1}) "
"with the arguments passed, and then invoked as normal commands. In "