summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-26 22:49:11 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-26 22:49:11 +0000
commitb3991b421530035674beaccb7e7f9a7a4c302326 (patch)
treee90b959132fceb57054c1e29aa6954b26a802dbb /parse.c
parent84735728ed5f6a07d87254860e2776775c54b85b (diff)
merge latest (4.3.99.16) from XFree86 (vendor) branchXORG-RELEASE-1-BASEXEVIE-MERGEXEVIE-BASEXINERAMA_2XEVIE
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/parse.c b/parse.c
index a65a031..153ccd8 100644
--- a/parse.c
+++ b/parse.c
@@ -28,7 +28,7 @@ other dealings in this Software without prior written authorization
from the X Consortium.
*/
-/* $XFree86: xc/programs/xditview/parse.c,v 1.5 2001/08/27 23:35:12 dawes Exp $ */
+/* $XFree86: xc/programs/xditview/parse.c,v 1.6 2003/05/27 22:27:00 tsi Exp $ */
/*
* parse.c
@@ -43,7 +43,6 @@ from the X Consortium.
#include <ctype.h>
#include "DviP.h"
-static int StopSeen = 0;
static void ParseDrawFunction(DviWidget dw, char *buf);
static void ParseDeviceControl(DviWidget dw);
static void PutCharacters(DviWidget dw, unsigned char *src, int len);
@@ -83,8 +82,6 @@ ParseInput(dw)
int otherc;
unsigned char tc;
- StopSeen = 0;
-
/*
* make sure some state exists
*/
@@ -457,7 +454,6 @@ ParseDeviceControl(dw) /* Parse the x commands */
case 'p': /* pause -- can restart */
break;
case 's': /* stop */
- StopSeen = 1;
return;
case 'r': /* resolution when prepared */
SetDeviceResolution (dw, GetNumber (dw));