Re: bug#25390: Segfault with sed 4.3

2017-01-09 Thread Assaf Gordon
Hello all, > On Jan 9, 2017, at 09:11, Norihiro Tanaka wrote: > > Sorry, I adjusted commit log, New patch does not change > testsuite/Makefile.tests. > <0001-tests-new-test-for-dfa-crash-bug.patch> Paul, Thank you for the quick fix. Norihiro, Thank you for the dfa improvements and sed-tests.

[PATCH] dfa: omit unused local

2017-01-09 Thread Paul Eggert
* lib/dfa.c (build_state): Fix up recent change. --- ChangeLog | 3 +++ lib/dfa.c | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ed9d346..f0cd277 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2017-01-09 Paul Eggert + dfa: omit

[PATCH 2/2] maint: time stamp -> timestamp

2017-01-09 Thread Paul Eggert
Use the spelling "timestamp", as that is what POSIX uses. --- build-aux/bootstrap| 4 ++-- build-aux/git-version-gen | 4 ++-- doc/install.texi | 2 +- doc/parse-datetime.texi| 8 doc/posix-functions/ctime.texi | 2 +- doc/po

[PATCH 1/2] maint: remove stray .texi files

2017-01-09 Thread Paul Eggert
Although these were superseded by other files like doc/posix-functions/ctime.texi, the old files were not removed. * doc/ctime.texi, doc/inet_ntoa.texi: Remove. --- ChangeLog | 7 +++ doc/ctime.texi | 30 -- doc/inet_ntoa.texi | 22

Re: bug#25390: Segfault with sed 4.3

2017-01-09 Thread Norihiro Tanaka
On Sun, 8 Jan 2017 22:12:02 -0800 Paul Eggert wrote: > Norihiro Tanaka wrote: > > I wrote two additional patches for dfa. First, derive number of > > allocation from not argument but number of state in transition table > > allocation. Second, melt down dfastate() into build_state(). Now, I >

Re: bug#25390: Segfault with sed 4.3

2017-01-09 Thread Norihiro Tanaka
On Mon, 09 Jan 2017 23:04:05 +0900 Norihiro Tanaka wrote: > Thanks, I updated the test. The new test uses valgrind. Sorry, I adjusted commit log, New patch does not change testsuite/Makefile.tests. From 67a17d942beb942acd2b2e95eba2cc3d43a5e883 Mon Sep 17 00:00:00 2001 From: Norihiro Tanaka Da