st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit 7a132bd6ac40bfa32b6ac1da412c8c7d35e2d5ca
parent 0cbcedb89ffe6e29b3c0640f371bed578c6e0c07
Author: Matthias-Christian Ott <ott@enolink.de>
Date:   Thu, 10 Jul 2008 22:42:10 +0200

Backed out changeset d2bb4220fdf3


Ptm and pts are used by pty.c, thus they have to be non-static.
Diffstat:
Mstd.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/std.c b/std.c
@@ -41,7 +41,7 @@ typedef struct {
 static int cols = 80, lines = 25;
 static int cx = 0, cy = 0;
 static int c;
-static int ptm, pts;
+int ptm, pts;
 static _Bool bold, digit, qmark;
 static pid_t pid;
 static RingBuffer buf;