qemacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-commit] Changes to qemacs/shell.c


From: Charlie Gordon
Subject: [Qemacs-commit] Changes to qemacs/shell.c
Date: Fri, 08 Jul 2005 05:30:50 -0400

Index: qemacs/shell.c
diff -u qemacs/shell.c:1.16 qemacs/shell.c:1.17
--- qemacs/shell.c:1.16 Wed Jun  1 23:49:30 2005
+++ qemacs/shell.c      Fri Jul  8 09:30:44 2005
@@ -319,7 +319,7 @@
     }
 }
 
-static void tty_write(ShellState *s, const unsigned char *buf, int len)
+static void tty_write(ShellState *s, const char *buf, int len)
 {
     int ret;
 
@@ -509,7 +509,7 @@
 static void tty_emulate(ShellState *s, int c)
 {
     int i, offset, offset1, offset2, n;
-    unsigned char buf1[10];
+    char buf1[10];
     
 #define ESC2(c1,c2)  (((c1)<<8)|((unsigned char)c2))
     /* some bytes are state independent */
@@ -1120,7 +1120,7 @@
 
 void shell_write_char(EditState *e, int c)
 {
-    unsigned char ch;
+    char ch;
 
     if (e->interactive) {
         ShellState *s = e->b->priv_data;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]