diff options
Diffstat (limited to 'app/xterm/main.h')
-rw-r--r-- | app/xterm/main.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/app/xterm/main.h b/app/xterm/main.h index 3e7920de0..fa5688ea9 100644 --- a/app/xterm/main.h +++ b/app/xterm/main.h @@ -1,7 +1,7 @@ -/* $XTermId: main.h,v 1.44 2009/10/10 09:38:25 tom Exp $ */ +/* $XTermId: main.h,v 1.51 2010/01/01 19:53:42 tom Exp $ */ /* - * Copyright 2000-2008,2009 by Thomas E. Dickey + * Copyright 2000-2009,2010 by Thomas E. Dickey * * All Rights Reserved * @@ -91,6 +91,10 @@ #define DEFFACESIZE "14.0" #endif +#ifndef DEF_ALLOW_COLOR +#define DEF_ALLOW_COLOR True +#endif + #ifndef DEF_ALLOW_FONT #define DEF_ALLOW_FONT True #endif @@ -107,6 +111,22 @@ #define DEF_ALLOW_WINDOW False #endif +#ifndef DEF_DISALLOWED_COLOR +#define DEF_DISALLOWED_COLOR "SetColor,GetColor,GetAnsiColor" +#endif + +#ifndef DEF_DISALLOWED_FONT +#define DEF_DISALLOWED_FONT "SetFont,GetFont" +#endif + +#ifndef DEF_DISALLOWED_TCAP +#define DEF_DISALLOWED_TCAP "SetTcap,GetTcap" +#endif + +#ifndef DEF_DISALLOWED_WINDOW +#define DEF_DISALLOWED_WINDOW "20,21,SetXprop,SetSelection" +#endif + #if OPT_BLINK_TEXT #define DEFBLINKASBOLD False #else @@ -145,6 +165,10 @@ #endif #endif +#ifndef DEF_TITLE_MODES +#define DEF_TITLE_MODES 0 +#endif + #ifndef PROJECTROOT #define PROJECTROOT "/usr/X11R6" #endif |