This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository e16.

View the commit online.

commit 1bfc29c0078ca64965cb9219f01b2fefce0e9954
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Fri Dec 22 18:53:04 2023 +0100

    eesh: Move some code around
---
 eesh/main.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/eesh/main.c b/eesh/main.c
index f0bdc504..f2083e99 100644
--- a/eesh/main.c
+++ b/eesh/main.c
@@ -32,8 +32,6 @@
 
 Display        *disp;
 
-static char     buf[10240];
-static int      nin;            // Bytes in buffer
 static Client  *e;
 
 static void
@@ -48,19 +46,11 @@ process_line(char *line)
     XSync(disp, False);
 }
 
-static void
-stdin_state_setup(void)
-{
-}
-
-static void
-stdin_state_restore(void)
-{
-}
-
 static void
 stdin_read(void)
 {
+    static char     buf[10240];
+    static int      nin;        // Bytes in buffer
     int             nr;
     char           *p;
 
@@ -92,6 +82,16 @@ stdin_read(void)
     }
 }
 
+static void
+stdin_state_setup(void)
+{
+}
+
+static void
+stdin_state_restore(void)
+{
+}
+
 int
 main(int argc, char **argv)
 {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to