summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-09-24 19:41:14 (GMT)
committerGitHub <noreply@github.com>2020-09-24 19:41:14 (GMT)
commit8b02332343aded8a7ce4ced6c3484a7114620f3b (patch)
tree2af68fc96070d410eba59f8509bc712179a91f53
parentdfb4a6cb5a64550e46d677a5c0eada9f9477309e (diff)
parent6d59324e04641955edfc2ba2001bd597afc5163a (diff)
downloadDoxygen-8b02332343aded8a7ce4ced6c3484a7114620f3b.zip
Doxygen-8b02332343aded8a7ce4ced6c3484a7114620f3b.tar.gz
Doxygen-8b02332343aded8a7ce4ced6c3484a7114620f3b.tar.bz2
Merge pull request #8052 from albert-github/feature/issue_8051
#8051 Consider documenting debug options of doxygen
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index ee414e7..7ec3be1 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10047,15 +10047,15 @@ void readConfiguration(int argc, char **argv)
debugLabel=getArg(argc,argv,optind);
if (!debugLabel)
{
- err("option \"-d\" is missing debug specifier.\n");
devUsage();
cleanUpDoxygen();
- exit(1);
+ exit(0);
}
retVal = Debug::setFlag(debugLabel);
if (!retVal)
{
err("option \"-d\" has unknown debug specifier: \"%s\".\n",debugLabel);
+ devUsage();
cleanUpDoxygen();
exit(1);
}