[dev] [sbase] [PATCH 3/3] touch: Use both atime and mtime of reference file

2015-05-15 Thread Michael Forney
--- touch.c | 22 +- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/touch.c b/touch.c index 2789716..fb04142 100644 --- a/touch.c +++ b/touch.c @@ -14,14 +14,13 @@ static int aflag; static int cflag; static int mflag; -static struct timespec t; +static struct

[dev] [sbase] [PATCH 2/3] touch: Handle nanosecond timestamps

2015-05-15 Thread Michael Forney
--- touch.c | 24 +++- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/touch.c b/touch.c index 563f919..2789716 100644 --- a/touch.c +++ b/touch.c @@ -14,14 +14,14 @@ static int aflag; static int cflag; static int mflag; -static time_t t; +static struct times

[dev] [sbase] [PATCH 1/3] mv, cp: Preserve nanosecond timestamps

2015-05-15 Thread Michael Forney
Otherwise, we run into problems in a typical autoconf-based build system: - config.status is created at some point between two seconds. - config.status is run, generating Makefile by first writing to a file in /tmp, and then mv-ing it to Makefile. - If this mv happens before the beginnin

Re: [dev] [sbase] [PATCH 1--2] ls: fix -S and -q

2015-05-15 Thread Dimitris Papastamos
On Fri, May 15, 2015 at 12:29:48AM +0200, Alexandre Niveau wrote: > Greetings, > > I found some bugs in ls. > > 1. option -S does not work on its own: > > $ echo "aa" >a; echo "b" >b; echo "ccc">c > $ ls -S > a > b > c > > First attached patch fixes this. Applied the first patch, will review t

Re: [dev] Patches applied

2015-05-15 Thread FRIGN
On Fri, 15 May 2015 08:02:31 +0200 "Roberto E. Vargas Caballero" wrote: Hey Roberto, > I have applied the patches 'Small bugfix for makeglyphfontspecs > cass in drawregion' by suigin, and 'set selection to IDLE on clear' by > v4hn. Thanks!!! please be more careful with the commits next time. I

[dev] [vis][PATCH v2] Make the '.' Filerange work on one line

2015-05-15 Thread Silvan Jegen
--- The first version broke some functionality. This one doesn't by doing some more ugly checking. We also make sure that we include the newline by using text_line_next instead of text_line_finish. vis.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vis.c b/vis.c inde