summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-06-23 09:46:45 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-06-23 09:46:45 (GMT)
commit54bcd31ff103383c6c75ed87b00f846ec29b8040 (patch)
treec485ad24b61429cd10455b2d438236483a47c189 /src/config.l
parentf7c4c021594300b449c3991de8c0918ad7f965af (diff)
downloadDoxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.zip
Doxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.tar.gz
Doxygen-54bcd31ff103383c6c75ed87b00f846ec29b8040.tar.bz2
Release-1.2.16-20020623
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/config.l b/src/config.l
index ab4a52f..3c647cc 100644
--- a/src/config.l
+++ b/src/config.l
@@ -1485,6 +1485,15 @@ void Config::create()
FALSE
);
cb = addBool(
+ "MULTILINE_CPP_IS_BRIEF",
+ "The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen \n"
+ "treat a multi-line C++ special comment block (i.e. a block of //! or /// \n"
+ "comments) as a brief description. This used to be the default behaviour. \n"
+ "The new default is to treat a multi-line C++ comment block as a detailed \n"
+ "description. Set this tag to YES if you prefer the old behaviour instead. \n",
+ FALSE
+ );
+ cb = addBool(
"DETAILS_AT_TOP",
"If the DETAILS_AT_TOP tag is set to YES then Doxygen \n"
"will output the detailed description near the top, like JavaDoc.\n"
@@ -2188,8 +2197,9 @@ void Config::create()
"SKIP_FUNCTION_MACROS",
"If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then \n"
"doxygen's preprocessor will remove all function-like macros that are alone \n"
- "on a line and do not end with a semicolon. Such function macros are typically \n"
- "used for boiler-plate code, and will confuse the parser if not removed. \n",
+ "on a line, have an all uppercase name, and do not end with a semicolon. Such \n"
+ "function macros are typically used for boiler-plate code, and will confuse the \n"
+ "parser if not removed. \n",
TRUE
);
cb->addDependency("ENABLE_PREPROCESSING");