chiark / gitweb /
Merge branch 'cvsimport'
[sympathy.git] / src / vt102.h
index 02fdf990718abd080b5d831a4dcbf568da5fb994..677bd888593a0ca47ee0b472fe0610f3b10b9b49 100644 (file)
@@ -1,4 +1,4 @@
-/*
+/* 
  * vt102.h:
  *
  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
@@ -6,12 +6,24 @@
  *
  */
 
-/*
- * $Id$
+/* 
+ * $Id: vt102.h,v 1.25 2008/03/10 11:49:33 james Exp $
  */
 
-/*
- * $Log$
+/* 
+ * $Log: vt102.h,v $
+ * Revision 1.25  2008/03/10 11:49:33  james
+ * *** empty log message ***
+ *
+ * Revision 1.24  2008/03/07 12:37:04  james
+ * *** empty log message ***
+ *
+ * Revision 1.23  2008/03/03 06:04:42  james
+ * *** empty log message ***
+ *
+ * Revision 1.22  2008/03/02 10:37:56  james
+ * *** empty log message ***
+ *
  * Revision 1.21  2008/02/28 16:57:52  james
  * *** empty log message ***
  *
 #define VT102_NMODES           32
 
 
-typedef struct
-{
+typedef struct {
   int in_escape;
   int in_cmd;
 
@@ -103,8 +114,7 @@ typedef struct
   char cmd_buf[VT102_CMD_LEN];
 } VT102_parser;
 
-typedef struct
-{
+typedef struct {
   CRT_Pos pos;
   int attr;
   int color;
@@ -112,8 +122,7 @@ typedef struct
 } VT102_State;
 
 
-typedef struct
-{
+typedef struct {
   CRT_Pos top_margin, bottom_margin;
   CRT_Pos screen_start, screen_end;
   VT102_parser parser;