summaryrefslogtreecommitdiff
path: root/xlogo.h
diff options
context:
space:
mode:
Diffstat (limited to 'xlogo.h')
-rw-r--r--xlogo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/xlogo.h b/xlogo.h
index 50d96c3..f3fa722 100644
--- a/xlogo.h
+++ b/xlogo.h
@@ -35,9 +35,11 @@ in this Software without prior written authorization from The Open Group.
#define Error(x) { printf x ; exit(EXIT_FAILURE); }
#define Log(x) { if(userOptions.verbose) printf x; }
+#define Msg(x) { if((!userOptions.quiet) || userOptions.verbose) printf x; }
typedef struct {
Boolean verbose;
+ Boolean quiet;
Boolean printAndExit;
String printername;
String printfile;