summaryrefslogtreecommitdiff
path: root/src/getargs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/getargs.h')
-rw-r--r--src/getargs.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/getargs.h b/src/getargs.h
index c5adb848..f630d0f5 100644
--- a/src/getargs.h
+++ b/src/getargs.h
@@ -114,10 +114,11 @@ extern int trace_flag;
enum feature
{
- feature_none = 0, /**< No additional feature. */
- feature_caret = 1 << 0, /**< Output errors with carets. */
- feature_fixit_parsable = 1 << 1, /**< Issue instructions to fix the sources. */
- feature_all = ~0 /**< All above features. */
+ feature_none = 0, /**< No additional feature. */
+ feature_caret = 1 << 0, /**< Output errors with carets. */
+ feature_fixit_parsable = 1 << 1, /**< Issue instructions to fix the sources. */
+ feature_syntax_only = 1 << 2, /**< Don't generate output. */
+ feature_all = ~0 /**< All above features. */
};
/** What additional features to use. */
extern int feature_flag;