[wiki] [sites] [st][externalpipe] port to latest git || Lucas Gabriel Vuotto

From: <git_AT_suckless.org>
Date: Sat, 03 Jun 2017 23:12:25 +0200

commit 420f797006c392ae178006a99a9965f2758588dd
Author: Lucas Gabriel Vuotto <lvuotto92_AT_gmail.com>
Date: Sat Jun 3 18:12:05 2017 -0300

    [st][externalpipe] port to latest git
    
    Signed-off-by: Lucas Gabriel Vuotto <lvuotto92_AT_gmail.com>

diff --git a/st.suckless.org/patches/externalpipe.md b/st.suckless.org/patches/externalpipe.md
index cae287d..6546c52 100644
--- a/st.suckless.org/patches/externalpipe.md
+++ b/st.suckless.org/patches/externalpipe.md
_AT_@ -27,7 +27,7 @@ Download
 * [st-externalpipe-0.4.1.diff](st-externalpipe-0.4.1.diff)
 * [st-externalpipe-0.5.diff](st-externalpipe-0.5.diff)
 * [st-externalpipe-0.6.diff](st-externalpipe-0.6.diff)
-* [st-externalpipe-20170513-5a10aca.diff](st-externalpipe-20170513-5a10aca.diff)
+* [st-externalpipe-20170603-b331da5.diff](st-externalpipe-20170603-b331da5.diff)
 
 Authors
 -------
diff --git a/st.suckless.org/patches/st-externalpipe-20170513-5a10aca.diff b/st.suckless.org/patches/st-externalpipe-20170513-5a10aca.diff
deleted file mode 100644
index 8c357d4..0000000
--- a/st.suckless.org/patches/st-externalpipe-20170513-5a10aca.diff
+++ /dev/null
_AT_@ -1,75 +0,0 @@
-diff --git a/st.c b/st.c
-index ae93ade..b650940 100644
---- a/st.c
-+++ b/st.c
-_AT_@ -138,6 +138,7 @@ static void printscreen(const Arg *) ;
- static void iso14755(const Arg *);
- static void toggleprinter(const Arg *);
- static void sendbreak(const Arg *);
-+static void externalpipe(const Arg *);
-
- /* config.h for applying patches and the configuration. */
- #include "config.h"
-_AT_@ -2341,6 +2342,62 @@ eschandle(uchar ascii)
- }
-
- void
-+externalpipe(const Arg *arg)
-+{
-+ int to[2]; /* 0 = read, 1 = write */
-+ pid_t child;
-+ int n;
-+ void (*oldsigpipe)(int);
-+ char buf[UTF_SIZ];
-+ Glyph *bp, *end;
-+
-+ if(pipe(to) == -1)
-+ return;
-+
-+ /* sigchld() handles this */
-+ switch(child = fork()){
-+ case -1:
-+ close(to[0]), close(to[1]);
-+ return;
-+ case 0:
-+ /* child */
-+ close(to[1]);
-+ dup2(to[0], STDIN_FILENO); /* 0<&to */
-+ close(to[0]);
-+ execvp(
-+ "sh",
-+ (char *const []){
-+ "/bin/sh",
-+ "-c",
-+ (char *)arg->v,
-+ 0
-+ });
-+ exit(127);
-+ }
-+
-+ /* parent */
-+ close(to[0]);
-+ /* ignore sigpipe for now, in case child exits early */
-+ oldsigpipe = signal(SIGPIPE, SIG_IGN);
-+
-+ for(n = 0; n < term.row; n++){
-+ bp = &term.line[n][0];
-+ end = &bp[MIN(tlinelen(n), term.col) - 1];
-+ if(bp != end || bp->u != ' ')
-+ for(; bp <= end; ++bp)
-+ if(xwrite(to[1], buf, utf8encode(bp->u, buf)) < 0)
-+ break;
-+ if(xwrite(to[1], "
", 1) < 0)
-+ break;
-+ }
-+
-+ close(to[1]);
-+
-+ /* restore */
-+ signal(SIGPIPE, oldsigpipe);
-+}
-+
-+void
- tputc(Rune u)
- {
- char c[UTF_SIZ];
diff --git a/st.suckless.org/patches/st-externalpipe-20170603-b331da5.diff b/st.suckless.org/patches/st-externalpipe-20170603-b331da5.diff
new file mode 100644
index 0000000..79180f6
--- /dev/null
+++ b/st.suckless.org/patches/st-externalpipe-20170603-b331da5.diff
_AT_@ -0,0 +1,75 @@
+diff --git a/st.c b/st.c
+index 8d4a9f2..2cb0d45 100644
+--- a/st.c
++++ b/st.c
+_AT_@ -138,6 +138,7 @@ static void printscreen(const Arg *) ;
+ static void iso14755(const Arg *);
+ static void toggleprinter(const Arg *);
+ static void sendbreak(const Arg *);
++static void externalpipe(const Arg *);
+
+ /* config.h for applying patches and the configuration. */
+ #include "config.h"
+_AT_@ -2344,6 +2345,62 @@ eschandle(uchar ascii)
+ }
+
+ void
++externalpipe(const Arg *arg)
++{
++ int to[2]; /* 0 = read, 1 = write */
++ pid_t child;
++ int n;
++ void (*oldsigpipe)(int);
++ char buf[UTF_SIZ];
++ Glyph *bp, *end;
++
++ if(pipe(to) == -1)
++ return;
++
++ /* sigchld() handles this */
++ switch(child = fork()){
++ case -1:
++ close(to[0]), close(to[1]);
++ return;
++ case 0:
++ /* child */
++ close(to[1]);
++ dup2(to[0], STDIN_FILENO); /* 0<&to */
++ close(to[0]);
++ execvp(
++ "sh",
++ (char *const []){
++ "/bin/sh",
++ "-c",
++ (char *)arg->v,
++ 0
++ });
++ exit(127);
++ }
++
++ /* parent */
++ close(to[0]);
++ /* ignore sigpipe for now, in case child exits early */
++ oldsigpipe = signal(SIGPIPE, SIG_IGN);
++
++ for(n = 0; n < term.row; n++){
++ bp = &term.line[n][0];
++ end = &bp[MIN(tlinelen(n), term.col) - 1];
++ if(bp != end || bp->u != ' ')
++ for(; bp <= end; ++bp)
++ if(xwrite(to[1], buf, utf8encode(bp->u, buf)) < 0)
++ break;
++ if(xwrite(to[1], "
", 1) < 0)
++ break;
++ }
++
++ close(to[1]);
++
++ /* restore */
++ signal(SIGPIPE, oldsigpipe);
++}
++
++void
+ tputc(Rune u)
+ {
+ char c[UTF_SIZ];
Received on Sat Jun 03 2017 - 23:12:25 CEST

This archive was generated by hypermail 2.3.0 : Sat Jun 03 2017 - 23:24:27 CEST