Message ID | d7a3d31c-964a-4131-b57e-b6fa7c18c5b4@knaff.lu (mailing list archive) |
---|---|
State | Under Review |
Delegated to: | Herbert Xu |
Headers | show |
Series | Another attempt of my work with a new subject, first item | expand |
Alain Knaff <alain@knaff.lu> wrote: > [Trying again as a new message rather than as a reply] The threading doesn't matter. It's the Subject that causes a new patch to be created. > Ok, so here goes 01. Please tell me how it goes, and if ok, I'll send the others. Yes it worked. But please use a more meaningful Subject for the rest of your patches. > If it goes well, can I send the others as replies to my initial message each, without repeating explanation text? Each email should come with its own Subject and the body of the email should describe what the patch does and why it's needed. Both the Subject and body will be used to create the git commit. Thanks,
diff -X ../exclude.txt -urN dash-0.5.12/src/bltin/bltin.h dash-0.5.12+01-remove-extraneous/src/bltin/bltin.h --- dash-0.5.12/src/bltin/bltin.h 2020-06-03 01:19:23.000000000 +0000 +++ dash-0.5.12+01-remove-extraneous/src/bltin/bltin.h 2024-10-20 18:26:46.960598638 +0000 @@ -63,7 +63,6 @@ #define fputs outstr #define fflush flushout #define fileno(f) ((f)->fd) -#define ferror outerr #endif #define INITARGS(argv) #define error sh_error diff -X ../exclude.txt -urN dash-0.5.12/src/jobs.c dash-0.5.12+01-remove-extraneous/src/jobs.c --- dash-0.5.12/src/jobs.c 2022-01-20 05:54:13.000000000 +0000 +++ dash-0.5.12+01-remove-extraneous/src/jobs.c 2024-10-27 19:53:42.912675611 +0000 @@ -112,9 +112,6 @@ STATIC void forkchild(struct job *, union node *, int); STATIC void forkparent(struct job *, union node *, int, pid_t); STATIC int dowait(int, struct job *); -#ifdef SYSV -STATIC int onsigchild(void); -#endif STATIC int waitproc(int, int *); STATIC char *commandtext(union node *); STATIC void cmdtxt(union node *); diff -X ../exclude.txt -urN dash-0.5.12/src/mystring.c dash-0.5.12+01-remove-extraneous/src/mystring.c --- dash-0.5.12/src/mystring.c 2022-12-11 06:29:21.000000000 +0000 +++ dash-0.5.12+01-remove-extraneous/src/mystring.c 2024-10-20 18:27:56.634245499 +0000 @@ -46,7 +46,6 @@ #include <errno.h> #include <inttypes.h> #include <limits.h> -#include <inttypes.h> #include <stdlib.h> #include "shell.h" #include "syntax.h"