aboutsummaryrefslogtreecommitdiffstats
path: root/src/vt102.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vt102.c')
-rw-r--r--src/vt102.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/vt102.c b/src/vt102.c
index 882574a..0253cdf 100644
--- a/src/vt102.c
+++ b/src/vt102.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.17 2008/02/07 01:58:28 james
+ * *** empty log message ***
+ *
* Revision 1.16 2008/02/07 01:57:46 james
* *** empty log message ***
*
@@ -171,6 +174,18 @@ csi_ender (int c)
}
static inline int
+scs_starter (int c)
+{
+ switch (c)
+ {
+ case '(':
+ case ')':
+ return 1;
+ }
+ return 0;
+}
+
+static inline int
csi_starter (int c)
{
switch (c)